From: kilian (dks-laptop) Date: Mon, 3 Feb 2020 17:24:20 +0000 (+0100) Subject: v20200203 X-Git-Tag: 1.0.15~69 X-Git-Url: http://cloud.dks.lu/git/?a=commitdiff_plain;h=d020999f0b05349731888ce3e6d8ce686fc00290;p=pot_lu.git v20200203 --- diff --git a/backoffice/data/schemata/defaultcompany.schema.sql b/backoffice/data/schemata/defaultcompany.schema.sql index b1faeca8..c4f6e0b4 100644 --- a/backoffice/data/schemata/defaultcompany.schema.sql +++ b/backoffice/data/schemata/defaultcompany.schema.sql @@ -1,43 +1,503 @@ CREATE SCHEMA %%NEWSCHEMA%%; -CREATE TABLE %%NEWSCHEMA%%.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE FUNCTION %%NEWSCHEMA%%.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='%%NEWSCHEMA%%'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from %%NEWSCHEMA%%.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + 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); + return newperiodid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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; +END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.onchange_reportperiod(pid_period integer) 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%%.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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 %%NEWSCHEMA%%.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 %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; + return pid_periodday; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period integer, pid_staff integer) 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; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform %%NEWSCHEMA%%.set_periodday_sums(cid_staffworkplan); + cdate = cdate + interval '1 day'; + end loop; + + end loop; + perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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, +count(id) 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 +from %%NEWSCHEMA%%.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 + --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,caldays) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) group by id_staff + loop + perform %%NEWSCHEMA%%.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + 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); + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM %%NEWSCHEMA%%.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO %%NEWSCHEMA%%.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staffweeksums(pid_staffworkplan bigint) 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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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 integer) 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%%.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from %%NEWSCHEMA%%.reportperiod where isvalidated != true + loop + perform %%NEWSCHEMA%%.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) 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%%.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -CREATE SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq OWNED BY %%NEWSCHEMA%%.reportperiod.id; +ALTER SEQUENCE %%NEWSCHEMA%%.editlog_id_seq OWNED BY %%NEWSCHEMA%%.editlog.id; -CREATE TABLE %%NEWSCHEMA%%.sites ( +CREATE TABLE %%NEWSCHEMA%%.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -CREATE SEQUENCE %%NEWSCHEMA%%.sites_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.sites_id_seq OWNED BY %%NEWSCHEMA%%.sites.id; +ALTER SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq OWNED BY %%NEWSCHEMA%%.reportperiod.id; CREATE TABLE %%NEWSCHEMA%%.staff ( id integer NOT NULL, @@ -46,8 +506,14 @@ CREATE TABLE %%NEWSCHEMA%%.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); CREATE SEQUENCE %%NEWSCHEMA%%.staff_id_seq @@ -63,15 +529,19 @@ CREATE TABLE %%NEWSCHEMA%%.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); CREATE SEQUENCE %%NEWSCHEMA%%.staffgroups_id_seq @@ -92,34 +562,99 @@ CREATE SEQUENCE %%NEWSCHEMA%%.staffperiodbase_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.staffperiodbase_id_seq OWNED BY %%NEWSCHEMA%%.staffcontract.id; -CREATE TABLE %%NEWSCHEMA%%.stafftimetracks ( +CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, + id_staff integer, + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval +); + +CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperiod.id; + +CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + +CREATE TABLE %%NEWSCHEMA%%.zzold_staffreportperiodsums ( + id integer NOT NULL, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -CREATE SEQUENCE %%NEWSCHEMA%%.stafftimetracks_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.stafftimetracks_id_seq OWNED BY %%NEWSCHEMA%%.stafftimetracks.id; +ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq OWNED BY %%NEWSCHEMA%%.zzold_staffreportperiodsums.id; + +CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( + id integer NOT NULL, + id_staff integer, + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq @@ -131,107 +666,175 @@ CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq OWNED BY %%NEWSCHEMA%%.staffvacancy.id; -CREATE TABLE %%NEWSCHEMA%%.staffvacancyyear ( - id integer NOT NULL, - id_staff integer, - vyear integer, - hours numeric, - days numeric -); +CREATE SEQUENCE %%NEWSCHEMA%%.staffweeksums_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; -CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancyyear_id_seq +ALTER SEQUENCE %%NEWSCHEMA%%.staffweeksums_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperiodweeks.id; + +CREATE SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.staffvacancyyear_id_seq OWNED BY %%NEWSCHEMA%%.staffvacancyyear.id; +ALTER SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperioddays.id; -CREATE TABLE %%NEWSCHEMA%%.staffworkplan ( - id bigint NOT NULL, - id_staff integer, +CREATE TABLE %%NEWSCHEMA%%.vacancydays ( + id integer NOT NULL, daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text + vacancyname text ); -CREATE SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.vacancydays_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq OWNED BY %%NEWSCHEMA%%.staffworkplan.id; +ALTER SEQUENCE %%NEWSCHEMA%%.vacancydays_id_seq OWNED BY %%NEWSCHEMA%%.vacancydays.id; + +CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + +CREATE VIEW %%NEWSCHEMA%%.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM %%NEWSCHEMA%%.reportperiod rp; CREATE VIEW %%NEWSCHEMA%%.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM %%NEWSCHEMA%%.reportperiod; + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM %%NEWSCHEMA%%.reportperiod rp; CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM %%NEWSCHEMA%%.staffcontract; +CREATE TABLE %%NEWSCHEMA%%.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (%%NEWSCHEMA%%.staffcontract sc - LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + sg.groupcolor, + sc.enddate, + sc.id_workplan, + 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))) + ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM %%NEWSCHEMA%%.staff; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM %%NEWSCHEMA%%.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (%%NEWSCHEMA%%.staff st + LEFT JOIN %%NEWSCHEMA%%.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS SELECT stw2.calweek, @@ -483,28 +1086,130 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM %%NEWSCHEMA%%.staffworkplan) stw2 + staffreportperioddays.timepause + FROM %%NEWSCHEMA%%.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; +CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + 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)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((%%NEWSCHEMA%%.staffreportperiod srp + 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))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM %%NEWSCHEMA%%.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS SELECT stw2.calweek, to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, @@ -548,9 +1253,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -593,9 +1313,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -638,9 +1373,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -683,9 +1433,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -728,9 +1493,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -773,9 +1553,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, to_char(max( CASE WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -818,294 +1613,240 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('%%NEWSCHEMA%%'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM %%NEWSCHEMA%%.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanlist AS - SELECT st.id AS id_staff, + stw.timepause + FROM ((%%NEWSCHEMA%%.staffreportperioddays stw + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, + ((st.surname || ' '::text) || st.prename) AS staffname, + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (%%NEWSCHEMA%%.staffreportperioddays swp + JOIN %%NEWSCHEMA%%.staff st ON ((swp.id_staff = st.id))); + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (%%NEWSCHEMA%%.vw_staffworkplan_weekly sp_dwt - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (%%NEWSCHEMA%%.staff st + LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((st.id = sc.id_staff))); -CREATE TABLE %%NEWSCHEMA%%.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); +CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM %%NEWSCHEMA%%.vacancytypes; CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS SELECT workplans.id, workplans.workplan FROM %%NEWSCHEMA%%.workplans; -CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM %%NEWSCHEMA%%.workplans; - CREATE VIEW %%NEWSCHEMA%%.vw_workplansdata AS SELECT workplans.id, workplans.workplan, + to_char(((((((COALESCE(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM %%NEWSCHEMA%%.workplans; +CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (%%NEWSCHEMA%%.workplans + JOIN %%NEWSCHEMA%%.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq START WITH 1 INCREMENT BY 1 @@ -1115,14 +1856,6 @@ CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.workplans_id_seq OWNED BY %%NEWSCHEMA%%.workplans.id; -CREATE TABLE %%NEWSCHEMA%%.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq START WITH 1 INCREMENT BY 1 @@ -1130,36 +1863,71 @@ CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.worktypes.id; +ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.vacancytypes.id; + +CREATE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; + +ALTER TABLE ONLY %%NEWSCHEMA%%.editlog ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.editlog_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.reportperiod_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.sites ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.sites_id_seq'::regclass); - ALTER TABLE ONLY %%NEWSCHEMA%%.staff ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staff_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffperiodbase_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffgroups ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffgroups_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.stafftimetracks_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiod_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffworkplan_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffweeksums_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffvacancy_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffvacancyyear_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.vacancydays_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffworkplan ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffworkplan_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.worktypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiodsums_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.sites - ADD CONSTRAINT sites_pkey PRIMARY KEY (id); - ALTER TABLE ONLY %%NEWSCHEMA%%.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); @@ -1169,23 +1937,175 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffgroups ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.stafftimetracks - ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancyyear - ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffworkplan +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT uniq_staffweekplan_cal UNIQUE (id_reportperiod, id_staff, calyear, calweek); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); + +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays + ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.worktypes +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -CREATE TRIGGER trg_upd_%%NEWSCHEMA%%_weekhours BEFORE UPDATE OF weekhours ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((%%NEWSCHEMA%%.staffreportperioddays stw + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN %%NEWSCHEMA%%.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk_1 FOREIGN KEY (id_reportperiod) REFERENCES %%NEWSCHEMA%%.reportperiod(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk FOREIGN KEY (id_reportperiod) REFERENCES %%NEWSCHEMA%%.reportperiod(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk_1 FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); diff --git a/backoffice/js/module_global.js b/backoffice/js/module_global.js index 40d8d391..b0fdf0d3 100644 --- a/backoffice/js/module_global.js +++ b/backoffice/js/module_global.js @@ -1,5 +1,6 @@ document.addEventListener("DOMContentLoaded", function() { //console.log( "Iframe "+ location.pathname.substring(location.pathname.lastIndexOf("/")) +" ready!" ); + moment.locale('fr'); initpage(); }); @@ -102,6 +103,33 @@ var timecalc = { return timecalc.lpad(hours,2,'0')+ ":"+ timecalc.lpad(minutes,2,'0'); } return ""; + }, + StringToInterval: function(strin){ + + if (strin.indexOf(":") > 0){ + var spl = strin.split(":"); + hours = spl[0].replace(/\D/g,''); + if (hours == ""){ + hours = "0"; + } + minutes = spl[1].replace(/\D/g,''); + if (minutes > "59"){ + minutes = "0"; + } + return hours + ":" + timecalc.lpad(minutes,2,'0'); + } + if (strin == ""){ return "";} + strin = strin.replace(/\D/g,''); + return strin + ":00"; + + }, + validateTime(obj){ + obj.value = timecalc.StringToTime(obj.value); + return false; + }, + validateInterval(obj){ + obj.value = timecalc.StringToInterval(obj.value); + return false; } } diff --git a/backoffice/js/request.js b/backoffice/js/request.js index 4e80e025..782cf68a 100644 --- a/backoffice/js/request.js +++ b/backoffice/js/request.js @@ -82,7 +82,7 @@ var req = { //console.log("Status returned: " + request.status + "resp:" + request.getResponseHeader("Content-Type")); if (request.getResponseHeader("Content-Type").indexOf('application/json') == 0){ if (request.responseText){ - console.log(request.responseText); + //console.log(request.responseText); var xparse = JSON.parse(request.responseText); ret = xparse.result; } else { @@ -113,8 +113,8 @@ var req = { }, asyncNoEvent: function(data){ console.log("query done"); - console.log(data); - console.log("done"); + //console.log(data); + //console.log("done"); } } \ No newline at end of file diff --git a/backoffice/tmpl/macro/fields.tt b/backoffice/tmpl/macro/fields.tt index 519161af..8fe4a67d 100644 --- a/backoffice/tmpl/macro/fields.tt +++ b/backoffice/tmpl/macro/fields.tt @@ -129,6 +129,20 @@ [% END -%] +[% MACRO fieldintervalbox(column,table,title,size,state,value,class) BLOCK -%] +
+ +
+ [% IF state == "disabled" || state == "readonly" %] + + [% ELSE %] + + + + [% END %] +
+
+[% END -%] [% MACRO fieldtextarea(column,table,title,size,state,height,value) BLOCK -%]
diff --git a/backoffice/tmpl/module/periods/index.js b/backoffice/tmpl/module/periods/index.js index 98c428cc..69414cb5 100644 --- a/backoffice/tmpl/module/periods/index.js +++ b/backoffice/tmpl/module/periods/index.js @@ -4,7 +4,8 @@ function initpage(){ schemata = parent.admin.getcurrentSchemata(); console.log("Current Schema:" + schemata); reportperiod.inittable(); - staffworkplan.inittable(); + staffperiodweeks.inittable(); + //staffworkplan.inittable(); //staffworkplan_daily.inittable(); module.viewpanel("tbl_reportperiod"); //call("reportperiod","inittable"); diff --git a/backoffice/tmpl/module/periods/index.tt b/backoffice/tmpl/module/periods/index.tt index f9d6d8d9..1c9a36ed 100644 --- a/backoffice/tmpl/module/periods/index.tt +++ b/backoffice/tmpl/module/periods/index.tt @@ -7,13 +7,13 @@ +
-
+ +
+
-
-
+
+
- + + -
[% END %] @@ -138,10 +151,10 @@ - + --> - + --> [% INCLUDE block/dlgdeleterow.tt %] [% INCLUDE block/dlgmessage.tt %] @@ -232,5 +245,6 @@ [% INCLUDE block/dlgreport.tt %] [% INCLUDE block/dlgaction.tt %] - - \ No newline at end of file + + + \ No newline at end of file diff --git a/backoffice/tmpl/module/periods/reportperiod.js b/backoffice/tmpl/module/periods/reportperiod.js index fc0a7f29..564aed26 100644 --- a/backoffice/tmpl/module/periods/reportperiod.js +++ b/backoffice/tmpl/module/periods/reportperiod.js @@ -1,20 +1,21 @@ var reportperiod ={ tbl: null, + selected: null, name: "reportperiod", - choices:{"id_staffgroup":null,"periodtype":null}, + choices:{}, initform: function(){ - flatpickr("#startdate",{altInput: true, - altFormat: "d.m.Y", - dateFormat: "Y-m-d", - weekNumbers: true, - // "disable": [ - // function(date) { - // // return true to disable - // return (date.getDay() !== 1); - // } - // ], - "locale": "fr", - }); + // flatpickr("#startdate",{altInput: true, + // altFormat: "d.m.Y", + // dateFormat: "Y-m-d", + // weekNumbers: true, + // // "disable": [ + // // function(date) { + // // // return true to disable + // // return (date.getDay() !== 1); + // // } + // // ], + // "locale": "fr", + // }); // flatpickr("#enddate",{altInput: true, // altFormat: "d.m.Y", // dateFormat: "Y-m-d", @@ -49,27 +50,76 @@ var reportperiod ={ inittable: function(){ reportperiod.tbl = new Tabulator("#tbl_" + reportperiod.name, { headerFilterPlaceholder: "filter...", - height: "94vh", - layout: "fitDataFill", + height: "93vh", + layout: "fitDataFill",//fitDataFill selectable: 1, + // persistence:{ + // sort: true, //persist column sorting + // filter: true, //persist filter sorting + // group: true, //persist row grouping + // columns: true, //persist columns + // }, + // rowClick:function(e, row){ + // //e - the click event object + // //row - row component + // //staffreportperiod.gettbldata(); + + // //row.toggleSelect(); //toggle row selected state on row click + // }, rowContext:function(e, row){e.preventDefault();}, + // rowFormatter:function(row, data){ + // //row - JQuery object for row + // //data - the data for the row + // console.log(data); + // if (reportperiod.tbl.getSelectedData()){ + // //row.css({"background-color":"#A6A6DF"}); + + // } else { + // //row.removeClass("selected"); + // } + // // if ((data) && (data.selected)){ + // // row.css({"background-color":"#A6A6DF"}); + // // + // // }else{ + // // + // // } + // }, + groupBy:["staffname"], + groupStartOpen:[true], + groupClosedShowCalcs:true, + groupHeader:[ + function(value, count, data){ //generate header contents for gender groups + return value; + }, + // function(value, count, data){ //generate header contents for gender groups + // return value; + // }, + ], columns: [ - //{title: "Nom", field: "periodname",headerFilter: "input"}, - {title: "Déparement", field: "groupname",headerFilter: "input"}, - { title: "Début",field: "startdate",formatter:"datetime",formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""} }, - { title: "Fin",field: "enddate",formatter:"datetime",formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""} }, - //{ title: "Durée",field: "periodlength",formatter:"number" }, - //{ title: "Unité",field: "periodtype",formatter:"plaintext" }, - { title: "Validé",field: "isvalidated",formatter:"tickCross",align:"center",formatterParams:{allowEmpty:true,allowTruthy:false,tickElement:'',crossElement:''}}, - { title: "Verfifié par",field: "userdisplayname",formatter:"plaintext" }, + {title: "Periodes de références", + columns: [ + //{title: "Nom",field:"staffname",headerFilter: "input",sorter:"string",width:0,visible: false}, + { title: "Début",field: "startdate",sorter:"datetime",formatter:"datetime",formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""},headerFilter: "input" }, + { title: "Fin",field: "enddate",sorter:"datetime",formatter:"datetime",formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"DD.MM.YYYY",invalidPlaceholder:""},headerFilter: "input" }, + {title: "Département",field:"groupname",headerFilter: "input",sorter:"string"}, + //{title: "Nom" ,field:"surname",headerFilter: "input",sorter:"string"}, + //{title: "Prénom" ,field:"prename",headerFilter: "input",sorter:"string"}, + {title: "Contrat", field:"contracthours",sorter: false}, + {title: "Travail", field:"workhours",sorter: false}, + {title: "Récup", field:"recuperationhours",sorter: false}, + {title: "congé", field:"vacancyhours",sorter: false}, + {title: "Total", field:"totalhours",sorter: false}, + {title: "Rest", field:"hoursdiff",sorter: false,bottomCalc:reportperiod.periodrestsum} // ,bottomCalcFormatter:"html" + ] + } ] }); // - reportperiod.initform(); + //reportperiod.initform(); reportperiod.gettbldata(); }, gettbldata: function(){ - req.reqdata("POST", "db.cgi", { "get": reportperiod.name + "list","schemata":schemata}, reportperiod.loadtbldata); + req.reqdata("POST", "db.cgi", { "get": "staffreportperiodlist","schemata":schemata}, reportperiod.loadtbldata); }, loadtbldata: function(data){ if (data && data.sqldata) { reportperiod.tbl.setData(data.sqldata);} @@ -81,51 +131,51 @@ var reportperiod ={ //module.viewdialog(reportperiod.name,null); return false; }, - edit: function(){ - var udata = reportperiod.tbl.getSelectedData(); - if (udata[0]) { - var uid = udata[0].id; - req.reqdata("POST","db.cgi",{ "get": reportperiod.name + "data","schemata":schemata,"filter":"id=" + uid},reportperiod.fillform); - } - //console.log("TEST Add Period!"); - //cleanform(reportperiod.name); - module.viewdialog(reportperiod.name,null); - return false; - }, - fillform: function(data){ - if (data && data.sqldata){ - //console.log("Fill Form 2"); - fillformbydataclass2(reportperiod.name,reportperiod.choices,data.sqldata[0]); - reportperiod.setenddate(null); - } - }, - remove: function(){ - var udata = reportperiod.tbl.getSelectedData(); - if (udata[0]) { - showdeletedlg(reportperiod.name,udata[0].id,null,reportperiod.afterperiodsave,schemata); - } - }, - loadplan: function(){ - var udata = reportperiod.tbl.getSelectedData(); - if (udata[0]) { + // edit: function(){ + // // var udata = reportperiod.tbl.getSelectedData(); + // // if (udata[0]) { + // // var uid = udata[0].id; + // // req.reqdata("POST","db.cgi",{ "get": reportperiod.name + "data","schemata":schemata,"filter":"id=" + uid},reportperiod.fillform); + // // } + // // //console.log("TEST Add Period!"); + // // //cleanform(reportperiod.name); + // // module.viewdialog(reportperiod.name,null); + // // return false; + // }, + // fillform: function(data){ + // // if (data && data.sqldata){ + // // //console.log("Fill Form 2"); + // // fillformbydataclass2(reportperiod.name,reportperiod.choices,data.sqldata[0]); + // // reportperiod.setenddate(null); + // // } + // }, + // remove: function(){ + // var udata = reportperiod.tbl.getSelectedData(); + // if (udata[0]) { + // showdeletedlg(reportperiod.name,udata[0].id,null,reportperiod.afterperiodsave,schemata); + // } + // }, + // loadplan: function(){ + // var udata = reportperiod.tbl.getSelectedData(); + // if (udata[0]) { - var uid = udata[0].id; - staffworkplan.datefrom = udata[0].startdate; - staffworkplan.dateto = udata[0].enddate; - staffworkplan.id_staffgroup= udata[0].id_staffgroup; - console.log("StaffPeriod:" + " ID: "+ udata[0].id_staffgroup +" " + staffworkplan.datefrom + "->" +staffworkplan.dateto); - staffworkplan.getstaff(); - document.getElementById("reportperiodtitle").innerHTML=" Periode du " + moment(udata[0].startdate).lang("fr").format('DD.MM.YYYY') + " au " + moment(udata[0].enddate).lang("fr").format('DD.MM.YYYY') + " - Département " + udata[0].groupname + ""; - staffworkplan.gettbldata(); - module.viewpanel('tbl_' + staffworkplan.name); + // var uid = udata[0].id; + // staffworkplan.datefrom = udata[0].startdate; + // staffworkplan.dateto = udata[0].enddate; + // staffworkplan.id_staffgroup= udata[0].id_staffgroup; + // console.log("StaffPeriod:" + " ID: "+ udata[0].id_staffgroup +" " + staffworkplan.datefrom + "->" +staffworkplan.dateto); + // staffworkplan.getstaff(); + // document.getElementById("reportperiodtitle").innerHTML=" Periode du " + moment(udata[0].startdate).lang("fr").format('DD.MM.YYYY') + " au " + moment(udata[0].enddate).lang("fr").format('DD.MM.YYYY') + " - Département " + udata[0].groupname + ""; + // staffworkplan.gettbldata(); + // module.viewpanel('tbl_' + staffworkplan.name); - } - }, - afterperiodsave: function(){ - reportperiod.gettbldata(); - document.getElementById('dlg_reportperiod').style.display='none'; - return false; - }, + // } + // }, + // afterperiodsave: function(){ + // reportperiod.gettbldata(); + // document.getElementById('dlg_reportperiod').style.display='none'; + // return false; + // }, // setenddate(event){ // console.log("set EndDate"); // var startdate = document.getElementById("startdate").value; @@ -147,31 +197,31 @@ var reportperiod ={ // document.getElementById("dspenddate").value=''; // } // }, - save: function(){ - // var dateend = document.getElementById("enddate").value; - // if (dateend == ''){ - // return false; - // } + // save: function(){ + // // var dateend = document.getElementById("enddate").value; + // // if (dateend == ''){ + // // return false; + // // } - var flds = getformcontent('reportperiod'); - delete flds["null"]; - delete flds["display_dspenddate"]; - var bshowmsg = false; - for (var f in flds){ - console.log(f + ":" + flds[f]); - if (flds[f] == "" && f != "ident_reportperiod_id" && f != "reportperiod_isvalidated" && f != "reportperiod_id_validateuser"){ - console.log("break:" + f ); - bshowmsg = true; - } - } - console.log(flds); - if (bshowmsg){ - document.getElementById("reportperiod_infomsg").innerHTML = '
Tous les champs sont requis!
'; - return false; - } + // var flds = getformcontent('reportperiod'); + // delete flds["null"]; + // delete flds["display_dspenddate"]; + // var bshowmsg = false; + // for (var f in flds){ + // console.log(f + ":" + flds[f]); + // if (flds[f] == "" && f != "ident_reportperiod_id" && f != "reportperiod_isvalidated" && f != "reportperiod_id_validateuser"){ + // console.log("break:" + f ); + // bshowmsg = true; + // } + // } + // console.log(flds); + // if (bshowmsg){ + // document.getElementById("reportperiod_infomsg").innerHTML = '
Tous les champs sont requis!
'; + // return false; + // } - saveformdata(flds,reportperiod.afterperiodsave,schemata); - }, + // saveformdata(flds,reportperiod.afterperiodsave,schemata); + // }, // viewstaffplan: function(){ // var udata = reportperiod.tbl.getSelectedData(); // if (udata[0]){ @@ -188,20 +238,23 @@ var reportperiod ={ // fillselectlist(reportperiod.choices["id_staffgroup"],data.sqldata,'id','groupname'); // }, - generatereport(){ + generatereport: function(){ var udata = reportperiod.tbl.getSelectedData(); if (udata[0]) { dlgreport.show('pot',udata[0],udata[0].periodname); } }, - datarefresh(){ + datarefresh: function(){ showdataloaddlg('','
Attendez s.v.p.!
'); req.reqdata("POST","db.cgi",{"action":"refreshperiods","schemata":schemata,"params":""},reportperiod.datarefreshdone); return false; }, - datarefreshdone(){ + datarefreshdone: function(){ closedataloaddlg(); return false; + }, + periodrestsum: function(values, data, calcParams){ + return '00:00'; } } \ No newline at end of file diff --git a/backoffice/tmpl/module/periods/staffperiodweeks.js b/backoffice/tmpl/module/periods/staffperiodweeks.js new file mode 100644 index 00000000..f0f87994 --- /dev/null +++ b/backoffice/tmpl/module/periods/staffperiodweeks.js @@ -0,0 +1,76 @@ +var staffperiodweeks = { + tbl: null, + name: "staffreportperiodweeks", + inittable: function(){ + staffperiodweeks.tbl = new Tabulator("#tbl_" + staffperiodweeks.name, { + height: "94vh", + layout: "fitDataFill", + selectable: 1, + rowContext:function(e, row){ + + e.preventDefault(); // prevent the browsers default context menu form appearing. + }, + groupBy:["dspweek"], + groupStartOpen:[true], + groupClosedShowCalcs:true, + groupHeader:[function(value, count, data){ return value;}, + ], + columns: [ + { title: "Date",field: "daydate",align:"right",sorter:"datetime",formatter:"datetime",formatterParams:{inputFormat:"YYYY-MM-DD",outputFormat:"dd, DD.MM.YYYY",invalidPlaceholder:""}}, + { title: "Début 1",field: "timestart1",sorter: false,align:"right"}, + { title: "Fin 1",field: "timeend1",sorter:false,align:"right"}, + { title: "Coup.",field: "interruptionhours",sorter:false,align:"right"}, + { title: "Début 2",field: "timestart2",sorter: false,align:"right"}, + { title: "Fin 2",field: "timeend2",sorter: false,align:"right"}, + { title: "Pause",field: "timepause",sorter: false,align:"right"}, + { title: "Travail",field: "workhours",sorter: false,align:"right",bottomCalc:staffperiodweeks.setweekworkhours}, + { title: "Congé",field: "vacancyhours",sorter: false,align:"right",bottomCalc:staffperiodweeks.setweekvacancyhours}, + { title: "Récup.",field: "recuperationhours",align:"right",sorter: false,bottomCalc:staffperiodweeks.setweekrecuperationhours}, + { title: "Total",field: "dayhours",align:"right",sorter: false,bottomCalc:staffperiodweeks.setweektotalhours}, + { title: "Diff",field:"diffhours",align:"right",sorter:false,bottomCalc:staffperiodweeks.setweekdiffhours} + +//week_contracthours,week_workhours,week_vacancyhours,week_recuperationhours,week_totalhours,week_diffhours + ] + }); + }, + gettbldata: function(){ + + var selrp = reportperiod.tbl.getSelectedData(); + + req.reqdata("POST", "db.cgi", { "get": "staffreportperioddays","schemata":schemata,"filter":"id_staff=" + selrp[0].id_staff + " and id_reportperiod=" + selrp[0].id_reportperiod}, staffperiodweeks.loadtbldata); + }, + loadtbldata: function(data){ + if (data && data.sqldata) { staffperiodweeks.tbl.setData(data.sqldata);} + }, + loadplan: function(){ + //var selstrp = staffreportperiod.tbl.getSelectedData(); + var selrp = reportperiod.tbl.getSelectedData(); + if (selrp[0]) { + //console.log(udata); + document.getElementById("reportperiodtitle").innerHTML=" Période du " + moment(selrp[0].startdate).lang("fr").format('DD.MM.YYYY') + " au " + moment(selrp[0].enddate).lang("fr").format('DD.MM.YYYY') + " - " + selrp[0].staffname + ""; + staffperiodweeks.gettbldata(); + module.viewpanel('tbl_' + staffperiodweeks.name); + } + }, + setweekworkhours: function(values, data, calcParams){ + if (data[0] && data[0].week_workhours){return data[0].week_workhours;} + return ""; + }, + setweekvacancyhours: function(values, data, calcParams){ + if (data[0] && data[0].week_vacancyhours){return data[0].week_vacancyhours;} + return ""; + }, + setweekrecuperationhours: function(values, data, calcParams){ + if (data[0] && data[0].week_recuperationhours){return data[0].week_recuperationhours;} + return ""; + }, + setweektotalhours: function(values, data, calcParams){ + if (data[0] && data[0].week_totalhours){return data[0].week_totalhours;} + return ""; + }, + setweekdiffhours: function(values, data, calcParams){ + console.log(data[0]); + if (data[0] && data[0].week_diffhours){return data[0].week_diffhours;} + return ""; + } +}; \ No newline at end of file diff --git a/backoffice/tmpl/module/periods/staffreportperiod.js b/backoffice/tmpl/module/periods/staffreportperiod.js new file mode 100644 index 00000000..d7d762d7 --- /dev/null +++ b/backoffice/tmpl/module/periods/staffreportperiod.js @@ -0,0 +1,53 @@ +var staffreportperiod = { + tbl: null, + name: "staffreportperiod", + inittable: function(){ + + staffreportperiod.tbl = new Tabulator("#tbl_" + staffreportperiod.name, { + headerFilterPlaceholder: "filter...", + height: "93vh", + layout: "fitData", + selectable: 1, + rowContext:function(e, row){e.preventDefault();}, + columns: [ + {title: "Salariés", + columns: [ + //{title: "Département" ,field:"staffgroup"}, + + ] + } + //{title: "Nom", field: "periodname",headerFilter: "input"}, + //{title: "Déparement", field: "groupname",headerFilter: "input"}, + + //{ title: "Durée",field: "periodlength",formatter:"number" }, + //{ title: "Unité",field: "periodtype",formatter:"plaintext" }, + //{ title: "Validé",field: "isvalidated",formatter:"tickCross",align:"center",formatterParams:{allowEmpty:true,allowTruthy:false,tickElement:'',crossElement:''}}, + //{ title: "Verfifié par",field: "userdisplayname",formatter:"plaintext" }, + ] + }); + staffreportperiod.gettbldata(); + }, + gettbldata: function(){ + var selrp = reportperiod.tbl.getSelectedData(); + console.log(selrp[0]); + if (selrp[0]){ + req.reqdata("POST", "db.cgi", { "get": staffreportperiod.name + "list","schemata":schemata, "filter": "id_reportperiod=" + selrp[0].id}, staffreportperiod.loadtbldata); + } else { + staffreportperiod.tbl.clearData(); + } + + }, + loadtbldata: function(data){ + if (data && data.sqldata) { staffreportperiod.tbl.setData(data.sqldata);} + }, + loadplan: function(){ + //var selstrp = staffreportperiod.tbl.getSelectedData(); + var selrp = reportperiod.tbl.getSelectedData(); + if (selstrp) { + //console.log(udata); + document.getElementById("reportperiodtitle").innerHTML=" Période du " + moment(selrp[0].startdate).lang("fr").format('DD.MM.YYYY') + " au " + moment(selrp[0].enddate).lang("fr").format('DD.MM.YYYY') + " - " + selrp[0].staffname + ""; + staffperiodweeks.gettbldata(); + module.viewpanel('tbl_' + staffperiodweeks.name); + } + } +} \ No newline at end of file diff --git a/backoffice/tmpl/module/periods/staffworkplan_daily.js b/backoffice/tmpl/module/periods/staffworkplan_daily.js index b793321e..959b8ef4 100644 --- a/backoffice/tmpl/module/periods/staffworkplan_daily.js +++ b/backoffice/tmpl/module/periods/staffworkplan_daily.js @@ -8,7 +8,7 @@ var staffworkplan_daily = { staffworkplan_daily.tbl = new Tabulator("#tbl_daystaffworkplan", { height: "94vh", layout: "fitData", - + selectable: 1, rowContext:function(e, row){ diff --git a/backoffice/tmpl/module/staff/index.tt b/backoffice/tmpl/module/staff/index.tt index 87738796..1863c492 100644 --- a/backoffice/tmpl/module/staff/index.tt +++ b/backoffice/tmpl/module/staff/index.tt @@ -35,6 +35,7 @@ [% fieldeditbox('phone','staff','Téléphone','w3-third','','','') %] [% fieldeditbox('email','staff','email','w3-third','','','') %]
+ [% fieldselectbox('id_staffgroup','staff','Département','w3-third','','','') %] [% fielddatebox('birthdate','staff',"date de naissance",'w3-third','','') %]
@@ -79,10 +80,9 @@ [% fieldhidden("id_staff","staffcontract",'','') %] [% fielddatebox("startdate","staffcontract","date début",'w3-half','','') %] [% fielddatebox("enddate","staffcontract","date fin",'w3-half','','') %] - [% fieldeditbox("weekhours","staffcontract","heures par semaine","w3-third","","","") %] + [% fieldintervalbox("weekhours","staffcontract","heures par semaine","w3-third","","","") %] [% fieldselectbox("weekdays","staffcontract","jours par semaine","w3-third","","","") %]
- [% fieldselectbox('id_staffgroup','staffcontract','Département','w3-third','','','') %] [% fieldselectbox('id_workplan','staffcontract','POT (Modèle)','w3-third','','','') %]
diff --git a/backoffice/tmpl/module/staff/staff.js b/backoffice/tmpl/module/staff/staff.js index 7994d2ac..620f9741 100644 --- a/backoffice/tmpl/module/staff/staff.js +++ b/backoffice/tmpl/module/staff/staff.js @@ -6,13 +6,20 @@ var staff ={ current_user: null, current_id: null, name: "staff", - choices:{}, + choices:{"id_staffgroup":null}, initform: function(){ flatpickr("#birthdate",{altInput: true, altFormat: "d.m.Y", dateFormat: "Y-m-d", "locale": "fr", }); + staff.choices["id_staffgroup"] = new Choices('#id_staffgroup',{ + searchEnabled: false, + itemSelectText: '', + removeItemButton: false, + choices : [] + }); + staff.getstaffgroups(); // flatpickr("#entrydate",{altInput: true, // altFormat: "d.m.Y", // dateFormat: "Y-m-d", @@ -38,23 +45,13 @@ var staff ={ //row - row component e.preventDefault(); // prevent the browsers default context menu form appearing. }, - columns: [{ - title: "No.", - field: "staffnumber", - headerFilter: "input" - }, { - title: "Prénom", - field: "prename", - headerFilter: "input" - },{ - title: "Nom", - field: "surname", - headerFilter: "input" - }, { - title: "Job", - field: "job", - headerFilter: "input" - }] + columns: [ + {title: "No.", field: "staffnumber",sorter: "String", headerFilter: "input" }, + {title: "Prénom",field: "prename",sorter: "String",headerFilter: "input"}, + { title: "Nom", field: "surname",sorter: "String", headerFilter: "input" }, + { title: "Job", field: "job",sorter: "String", headerFilter: "input" }, + { title: "Départment", field: "groupname",sorter: "String", headerFilter: "input" } + ] }); staff.gettbldata(); @@ -126,5 +123,11 @@ var staff ={ } return false; - } + }, + getstaffgroups: function(){ + req.reqdata("POST","db.cgi",{"get":"staffgroupslist","schemata":schemata},staff.fillstaffgroups); + }, + fillstaffgroups: function(data){ + fillselectlist(staff.choices["id_staffgroup"],data.sqldata,'id','groupname'); + }, } diff --git a/backoffice/tmpl/module/staff/staffcontract.js b/backoffice/tmpl/module/staff/staffcontract.js index e9624f4a..c1c3dc31 100644 --- a/backoffice/tmpl/module/staff/staffcontract.js +++ b/backoffice/tmpl/module/staff/staffcontract.js @@ -1,14 +1,14 @@ var staffcontract = { name: "staffcontract", tbl: null, - choices:{"id_staffgroup":null,"weekdays":null,"id_workplan":null}, + choices:{"weekdays":null,"id_workplan":null}, initform: function(){ - staffcontract.choices["id_staffgroup"] = new Choices('#id_staffgroup',{ - searchEnabled: false, - itemSelectText: '', - removeItemButton: false, - choices : [] - }); + // staffcontract.choices["id_staffgroup"] = new Choices('#id_staffgroup',{ + // searchEnabled: false, + // itemSelectText: '', + // removeItemButton: false, + // choices : [] + // }); staffcontract.choices["id_workplan"] = new Choices('#id_workplan',{ searchEnabled: false, itemSelectText: '', @@ -26,24 +26,24 @@ var staffcontract = { dateFormat: "Y-m-d", "locale": "fr", weekNumbers: true, - // "disable": [ - // function(date) { - // // return true to disable - // return (date.getDay() !== 1); - // } - // ], + "disable": [ + function(date) { + // return true to disable + return (date.getDay() !== 1); + } + ], }); flatpickr("#enddate",{altInput: true, altFormat: "d.m.Y", dateFormat: "Y-m-d", "locale": "fr", weekNumbers: true, - // "disable": [ - // function(date) { - // // return true to disable - // return (date.getDay() !== 0); - // } - // ], + "disable": [ + function(date) { + // return true to disable + return (date.getDay() !== 0); + } + ], }); }, inittable: function(){ @@ -81,9 +81,7 @@ var staffcontract = { title: "h/semaine", field: "weekhours", align: "right", - headerSort: false, - formatter:"money",formatterParams:{decimal:",",thousand:".",symbol:" ",symbolAfter:"",precision:2}, },{ title: "j/semaine", field: "weekdays", diff --git a/backoffice/tmpl/skeleton/module.tt b/backoffice/tmpl/skeleton/module.tt index 231bea75..a9d9d677 100644 --- a/backoffice/tmpl/skeleton/module.tt +++ b/backoffice/tmpl/skeleton/module.tt @@ -36,7 +36,7 @@ - + diff --git a/dev/db/portanova_staffcontract.sql b/dev/db/portanova_staffcontract.sql new file mode 100644 index 00000000..ae80bb63 --- /dev/null +++ b/dev/db/portanova_staffcontract.sql @@ -0,0 +1,50 @@ +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(77, 108, '2020-01-06', 2, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(69, 130, '2005-01-08', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(71, 133, '2013-01-07', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(72, 135, '2006-10-23', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(73, 136, '1992-03-15', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(79, 111, '2020-01-01', 2, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(88, 127, '2020-01-01', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(89, 128, '2020-01-01', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(56, 103, '2014-03-01', 4, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(57, 104, '2015-11-15', 4, 6, NULL, 1, 30:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(60, 109, '2005-04-19', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(61, 113, '2016-05-19', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(91, 134, '2020-01-01', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(62, 114, '2007-08-14', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(63, 115, '2013-05-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(64, 118, '2018-02-12', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(75, 102, '2020-01-01', 4, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(78, 110, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(81, 116, '2020-01-01', 2, 6, '2019-02-28', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(82, 117, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(83, 119, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(70, 131, '1995-07-01', 1, 6, NULL, 6, 20:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(66, 124, '2016-04-01', 2, 6, '2019-05-31', 1, 12:30:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(99, 145, '2020-01-01', 2, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(58, 105, '2011-10-01', 2, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(59, 106, '2015-07-01', 2, 6, NULL, 1, 12:30:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(65, 122, '2015-10-15', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(100, 146, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(102, 148, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(103, 149, '2020-01-01', 2, 6, NULL, 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(67, 125, '2003-10-01', 4, 6, NULL, 1, 20:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(107, 151, '2020-02-01', 4, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(74, 142, '2014-04-15', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(97, 143, '2020-01-01', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(105, 129, '2018-11-15', 1, 6, NULL, 6, 40:00:00); +INSERT INTO staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES(96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, 40:00:00); diff --git a/dev/db/potlu_db.newcompanyschema.pg.schema.sql b/dev/db/potlu_db.newcompanyschema.pg.schema.sql index b1faeca8..c4f6e0b4 100644 --- a/dev/db/potlu_db.newcompanyschema.pg.schema.sql +++ b/dev/db/potlu_db.newcompanyschema.pg.schema.sql @@ -1,43 +1,503 @@ CREATE SCHEMA %%NEWSCHEMA%%; -CREATE TABLE %%NEWSCHEMA%%.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE FUNCTION %%NEWSCHEMA%%.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='%%NEWSCHEMA%%'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from %%NEWSCHEMA%%.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + 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); + return newperiodid; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from %%NEWSCHEMA%%.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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; +END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.onchange_reportperiod(pid_period integer) 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%%.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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 %%NEWSCHEMA%%.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 %%NEWSCHEMA%%.staffreportperioddays set workhours=cworkhours,interruptionhours=cinterruptionhours,dayhours=cdayhours,vacancyhours=cvacancyhours,recuperationhours=crecuperationhours where id=pid_periodday; + return pid_periodday; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiod_sums(pid_period integer, pid_staff integer) 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; + end loop; + --set periodstaffdata (based on periodweeks) + --set nextperiodsdata(based on) + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from %%NEWSCHEMA%%.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into %%NEWSCHEMA%%.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform %%NEWSCHEMA%%.set_periodday_sums(cid_staffworkplan); + cdate = cdate + interval '1 day'; + end loop; + + end loop; + perform %%NEWSCHEMA%%.verify_perioddays(pid_period,pid_staff); + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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, +count(id) 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 +from %%NEWSCHEMA%%.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 + --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,caldays) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform %%NEWSCHEMA%%.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from %%NEWSCHEMA%%.getperiod_staffcontract(pid_period) group by id_staff + loop + perform %%NEWSCHEMA%%.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + 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); + return true; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM %%NEWSCHEMA%%.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO %%NEWSCHEMA%%.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.update_staffweeksums(pid_staffworkplan bigint) 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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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 integer) 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%%.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from %%NEWSCHEMA%%.reportperiod where isvalidated != true + loop + perform %%NEWSCHEMA%%.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + +CREATE FUNCTION %%NEWSCHEMA%%.zzold_set_staffperiod(pid_period integer) 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%%.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -CREATE SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq OWNED BY %%NEWSCHEMA%%.reportperiod.id; +ALTER SEQUENCE %%NEWSCHEMA%%.editlog_id_seq OWNED BY %%NEWSCHEMA%%.editlog.id; -CREATE TABLE %%NEWSCHEMA%%.sites ( +CREATE TABLE %%NEWSCHEMA%%.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -CREATE SEQUENCE %%NEWSCHEMA%%.sites_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.sites_id_seq OWNED BY %%NEWSCHEMA%%.sites.id; +ALTER SEQUENCE %%NEWSCHEMA%%.reportperiod_id_seq OWNED BY %%NEWSCHEMA%%.reportperiod.id; CREATE TABLE %%NEWSCHEMA%%.staff ( id integer NOT NULL, @@ -46,8 +506,14 @@ CREATE TABLE %%NEWSCHEMA%%.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); CREATE SEQUENCE %%NEWSCHEMA%%.staff_id_seq @@ -63,15 +529,19 @@ CREATE TABLE %%NEWSCHEMA%%.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); CREATE TABLE %%NEWSCHEMA%%.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); CREATE SEQUENCE %%NEWSCHEMA%%.staffgroups_id_seq @@ -92,34 +562,99 @@ CREATE SEQUENCE %%NEWSCHEMA%%.staffperiodbase_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.staffperiodbase_id_seq OWNED BY %%NEWSCHEMA%%.staffcontract.id; -CREATE TABLE %%NEWSCHEMA%%.stafftimetracks ( +CREATE TABLE %%NEWSCHEMA%%.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, + id_staff integer, + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval +); + +CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiod_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperiod.id; + +CREATE TABLE %%NEWSCHEMA%%.staffreportperioddays ( id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + +CREATE TABLE %%NEWSCHEMA%%.zzold_staffreportperiodsums ( + id integer NOT NULL, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -CREATE SEQUENCE %%NEWSCHEMA%%.stafftimetracks_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.stafftimetracks_id_seq OWNED BY %%NEWSCHEMA%%.stafftimetracks.id; +ALTER SEQUENCE %%NEWSCHEMA%%.staffreportperiodsums_id_seq OWNED BY %%NEWSCHEMA%%.zzold_staffreportperiodsums.id; + +CREATE TABLE %%NEWSCHEMA%%.staffreportperiodweeks ( + id integer NOT NULL, + id_staff integer, + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); CREATE TABLE %%NEWSCHEMA%%.staffvacancy ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq @@ -131,107 +666,175 @@ CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.staffvacancy_id_seq OWNED BY %%NEWSCHEMA%%.staffvacancy.id; -CREATE TABLE %%NEWSCHEMA%%.staffvacancyyear ( - id integer NOT NULL, - id_staff integer, - vyear integer, - hours numeric, - days numeric -); +CREATE SEQUENCE %%NEWSCHEMA%%.staffweeksums_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; -CREATE SEQUENCE %%NEWSCHEMA%%.staffvacancyyear_id_seq +ALTER SEQUENCE %%NEWSCHEMA%%.staffweeksums_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperiodweeks.id; + +CREATE SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.staffvacancyyear_id_seq OWNED BY %%NEWSCHEMA%%.staffvacancyyear.id; +ALTER SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq OWNED BY %%NEWSCHEMA%%.staffreportperioddays.id; -CREATE TABLE %%NEWSCHEMA%%.staffworkplan ( - id bigint NOT NULL, - id_staff integer, +CREATE TABLE %%NEWSCHEMA%%.vacancydays ( + id integer NOT NULL, daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text + vacancyname text ); -CREATE SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq +CREATE SEQUENCE %%NEWSCHEMA%%.vacancydays_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.staffworkplan_id_seq OWNED BY %%NEWSCHEMA%%.staffworkplan.id; +ALTER SEQUENCE %%NEWSCHEMA%%.vacancydays_id_seq OWNED BY %%NEWSCHEMA%%.vacancydays.id; + +CREATE TABLE %%NEWSCHEMA%%.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + +CREATE VIEW %%NEWSCHEMA%%.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM %%NEWSCHEMA%%.reportperiod rp; CREATE VIEW %%NEWSCHEMA%%.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM %%NEWSCHEMA%%.reportperiod; + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM %%NEWSCHEMA%%.reportperiod rp; CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM %%NEWSCHEMA%%.staffcontract; +CREATE TABLE %%NEWSCHEMA%%.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + CREATE VIEW %%NEWSCHEMA%%.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (%%NEWSCHEMA%%.staffcontract sc - LEFT JOIN %%NEWSCHEMA%%.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + sg.groupcolor, + sc.enddate, + sc.id_workplan, + 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))) + ORDER BY sc.startdate DESC, sc.enddate DESC; CREATE VIEW %%NEWSCHEMA%%.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM %%NEWSCHEMA%%.staff; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; CREATE VIEW %%NEWSCHEMA%%.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM %%NEWSCHEMA%%.staffgroups; CREATE VIEW %%NEWSCHEMA%%.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM %%NEWSCHEMA%%.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (%%NEWSCHEMA%%.staff st + LEFT JOIN %%NEWSCHEMA%%.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS SELECT stw2.calweek, @@ -483,28 +1086,130 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM %%NEWSCHEMA%%.staffworkplan) stw2 + staffreportperioddays.timepause + FROM %%NEWSCHEMA%%.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; +CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + 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)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((%%NEWSCHEMA%%.staffreportperiod srp + 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))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM %%NEWSCHEMA%%.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS SELECT stw2.calweek, to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, @@ -548,9 +1253,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -593,9 +1313,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -638,9 +1373,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -683,9 +1433,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -728,9 +1493,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -773,9 +1553,24 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, to_char(max( CASE WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -818,294 +1613,240 @@ CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('%%NEWSCHEMA%%'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM %%NEWSCHEMA%%.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; - -CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanlist AS - SELECT st.id AS id_staff, + stw.timepause + FROM ((%%NEWSCHEMA%%.staffreportperioddays stw + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, + ((st.surname || ' '::text) || st.prename) AS staffname, + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (%%NEWSCHEMA%%.staffreportperioddays swp + JOIN %%NEWSCHEMA%%.staff st ON ((swp.id_staff = st.id))); + +CREATE VIEW %%NEWSCHEMA%%.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (%%NEWSCHEMA%%.vw_staffworkplan_weekly sp_dwt - LEFT JOIN %%NEWSCHEMA%%.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (%%NEWSCHEMA%%.staff st + LEFT JOIN %%NEWSCHEMA%%.staffcontract sc ON ((st.id = sc.id_staff))); -CREATE TABLE %%NEWSCHEMA%%.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); +CREATE VIEW %%NEWSCHEMA%%.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM %%NEWSCHEMA%%.vacancytypes; CREATE VIEW %%NEWSCHEMA%%.vw_workplanlist AS SELECT workplans.id, workplans.workplan FROM %%NEWSCHEMA%%.workplans; -CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM %%NEWSCHEMA%%.workplans; - CREATE VIEW %%NEWSCHEMA%%.vw_workplansdata AS SELECT workplans.id, workplans.workplan, + to_char(((((((COALESCE(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM %%NEWSCHEMA%%.workplans; +CREATE VIEW %%NEWSCHEMA%%.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (%%NEWSCHEMA%%.workplans + JOIN %%NEWSCHEMA%%.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq START WITH 1 INCREMENT BY 1 @@ -1115,14 +1856,6 @@ CREATE SEQUENCE %%NEWSCHEMA%%.workplans_id_seq ALTER SEQUENCE %%NEWSCHEMA%%.workplans_id_seq OWNED BY %%NEWSCHEMA%%.workplans.id; -CREATE TABLE %%NEWSCHEMA%%.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq START WITH 1 INCREMENT BY 1 @@ -1130,36 +1863,71 @@ CREATE SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq NO MAXVALUE CACHE 1; -ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.worktypes.id; +ALTER SEQUENCE %%NEWSCHEMA%%.worktypes_id_seq OWNED BY %%NEWSCHEMA%%.vacancytypes.id; + +CREATE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; + +ALTER TABLE ONLY %%NEWSCHEMA%%.editlog ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.editlog_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.reportperiod_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.sites ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.sites_id_seq'::regclass); - ALTER TABLE ONLY %%NEWSCHEMA%%.staff ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staff_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffperiodbase_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffgroups ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffgroups_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.stafftimetracks_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiod_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffworkplan_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffweeksums_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffvacancy_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffvacancyyear_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.vacancydays_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffworkplan ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffworkplan_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.workplans_id_seq'::regclass); -ALTER TABLE ONLY %%NEWSCHEMA%%.worktypes ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.worktypes_id_seq'::regclass); +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('%%NEWSCHEMA%%.staffreportperiodsums_id_seq'::regclass); + +ALTER TABLE ONLY %%NEWSCHEMA%%.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); ALTER TABLE ONLY %%NEWSCHEMA%%.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.sites - ADD CONSTRAINT sites_pkey PRIMARY KEY (id); - ALTER TABLE ONLY %%NEWSCHEMA%%.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); @@ -1169,23 +1937,175 @@ ALTER TABLE ONLY %%NEWSCHEMA%%.staffgroups ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.stafftimetracks - ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffvacancyyear - ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.staffworkplan +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); +ALTER TABLE ONLY %%NEWSCHEMA%%.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT uniq_staffweekplan_cal UNIQUE (id_reportperiod, id_staff, calyear, calweek); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); + +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancydays + ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); + ALTER TABLE ONLY %%NEWSCHEMA%%.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -ALTER TABLE ONLY %%NEWSCHEMA%%.worktypes +ALTER TABLE ONLY %%NEWSCHEMA%%.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -CREATE TRIGGER trg_upd_%%NEWSCHEMA%%_weekhours BEFORE UPDATE OF weekhours ON %%NEWSCHEMA%%.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +CREATE OR REPLACE VIEW %%NEWSCHEMA%%.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((%%NEWSCHEMA%%.staffreportperioddays stw + LEFT JOIN %%NEWSCHEMA%%.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN %%NEWSCHEMA%%.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN %%NEWSCHEMA%%.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk_1 FOREIGN KEY (id_reportperiod) REFERENCES %%NEWSCHEMA%%.reportperiod(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk FOREIGN KEY (id_reportperiod) REFERENCES %%NEWSCHEMA%%.reportperiod(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk_1 FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk FOREIGN KEY (id_staff) REFERENCES %%NEWSCHEMA%%.staff(id); + +ALTER TABLE ONLY %%NEWSCHEMA%%.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES %%NEWSCHEMA%%.staffgroups(id); diff --git a/dev/db/potlu_db.pg.data.sql b/dev/db/potlu_db.pg.data.sql index 89fb7ec5..0fb25a7a 100644 --- a/dev/db/potlu_db.pg.data.sql +++ b/dev/db/potlu_db.pg.data.sql @@ -16,6 +16,12 @@ SET xmloption = content; SET client_min_messages = warning; SET row_security = off; +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: demo; Owner: - +-- + + + -- -- Data for Name: staff; Type: TABLE DATA; Schema: demo; Owner: - -- @@ -23,6 +29,24 @@ SET row_security = off; INSERT INTO demo.staff (id, staffident, surname, prename, pincde, fingerprint, stations, id_user) VALUES (1, NULL, 'Saffran', 'Kilian', NULL, NULL, NULL, NULL); +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: demo; Owner: - +-- + + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: demo; Owner: - +-- + + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: demo; Owner: - +-- + + + -- -- Data for Name: stations; Type: TABLE DATA; Schema: demo; Owner: - -- @@ -41,135 +65,5179 @@ INSERT INTO demo.timetrackuser (id, id_staff, stamp_in, stamp_out) VALUES (5, 1, -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (1, 'Période 1 2020', '2019-12-30', '2020-02-23'); -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (5, 'Periode X', '2019-11-25', '2020-04-05'); -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (6, 'TEST', '2019-11-25', '2020-01-05'); -- --- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (27, NULL, '2019-12-30', '2020-02-23', NULL); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (29, NULL, '2020-02-24', '2020-04-19', 27); -- -- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (1, 'A100', 'NISTRI', 'ANGELA', 'serveuse', '1987-03-27', '2015-06-22', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (4, 'A101', 'JOURDAN', 'JOSIAN', 'serveuse', '1981-01-29', '2015-04-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (5, 'A102', 'ARENGA', 'TERESA', 'serveuse', '1981-06-15', '2015-03-10', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (6, 'A103', 'BARROSO', 'MARIA', 'serveuse', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (7, 'A104', 'STIPA', 'CRISTIAN', 'serveur', '1975-08-08', '2015-11-09', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (15, '5558', 'DEDJA', 'CLAIDIO', 'Barman', '1994-02-24', '2014-11-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (16, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1995-11-05', '2015-10-08', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (8, 'A105', 'LIBERTI', 'RICCARDO', 'serveur', '1990-06-19', '2016-02-13', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (11, 'A106', 'ARMOCIDA', 'Domenico', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (12, 'A107', 'MORTASSI', 'KARIM', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (13, 'A108', 'IRIA', 'FABIO', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (14, 'A109', 'SERGIO', 'SERGIO', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (18, 'A200', NULL, NULL, 'Barman', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (20, 'A110', 'QUATTRONE', 'DEMETRIO', 'Cuisinier', '1950-06-27', '2015-12-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (24, 'A111', 'RAMOS DA SILVA', 'JOHNY', 'cuisinier', '1966-08-25', '2005-05-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (25, 'A112', 'VICINI', 'DAVIDE', NULL, NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (26, 'A113', 'LAMA', 'ANGELO', 'commis de cuisine', '1992-11-20', '2008-07-10', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (30, 'A114', 'ILIC', 'JULIEN', 'apprenti', '1995-04-22', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (31, 'A115', 'SOMNEZ', 'TUNAHAN', NULL, NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (36, 'A117', 'DA LUZ', 'CANDIDA', 'plongeus', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (37, 'A118', 'CRISCIONE', 'EMANUELE', 'resp. de réception', '1981-09-18', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (41, 'A119', 'SONMEZ', 'TUNAHAN', 'apprenti', '1998-06-15', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (42, 'A120', 'IRIA', 'SILVA FABIO', 'apprenti', '1988-06-29', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (43, 'A121', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (44, 'A122', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (45, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (2, '5020', 'MATIAS', 'RAPHAEL', 'serveur', '1975-01-26', '2005-04-19', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (3, '6600', 'ALIF', 'DIDIER', 'serveur', '1968-04-14', '2007-08-14', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (9, '5502', 'COPPOLA', 'CHRISTIAN', 'serveur', '1990-11-25', '2016-01-18', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (21, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', '2005-01-08', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (22, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', '2014-04-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (23, '5503', 'CORONEL', 'SILVINO ROSA', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (27, '7120', 'MELO', 'IVO TIAGO', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (28, '7600', 'PREZZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', '2012-10-03', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (29, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/commis de cuisine', '1980-02-20', '2015-06-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (32, '5480', 'COIMBRA ABRANTES', ' MARIA', 'commis de cuisine', '1969-09-24', '2006-10-23', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (33, '5540', 'DE BRITO', 'Djela', 'commis de cuisine', '1975-01-15', '1995-07-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (34, '7591', 'PEREIRA GOMES', 'ANTONIA', 'plongeuse', '1987-04-29', '1992-03-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (35, '5600', 'DOS SANTOS', 'Alcinda', 'plongeuse', '1960-12-26', '2011-07-05', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (38, '7980', 'SCHMITGEN', 'TANUCCIA', 'Hôtesse d''accueil/serveuse', '1964-01-20', '2010-10-04', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (39, '2701', 'KIEFFER-WEILER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', '2015-07-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (40, '8725', 'YAKOBSON', 'YULIYA', 'hôtesse d''accueil', '1974-04-02', '2011-10-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (10, '8501', 'TAVERNA', 'Greta', 'serveuse', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (17, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (19, '1172', 'BUCHICCHIO', 'DONATO ANTONIO', ' chef cuisinier', '1970-10-23', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (132, '5430', 'CAMPANELLA', 'Isamaele', 'commis de cuisine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (133, '7600', 'PREZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (131, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (108, '5502', 'COPPOLA', 'CHRISTIAN', 'chef de salle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (117, '5514', 'DAGGIANO', 'GREGORIO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (135, '5503', 'CORONEL', 'SILVINO', 'cuisinier', '1964-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (136, '5480', 'COIMBRA DE SOUSA', 'MARIA', 'commis de cuisine', '1969-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (111, '5140', 'ARMOCIDA', 'DOMENICO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (103, '1320', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (104, '3200', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (109, '5020', 'ALIF', 'DIDIER', 'serveur', '1975-01-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (113, '6890', 'LIEBERTI', 'RICCARDO', 'serveur/Barman', '1990-06-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (134, '8091', 'SONMEZ', 'TUNAHAN', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (114, '6600', 'JOURDAN', 'JOSIANE', 'serveuse', '1968-04-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (115, '8050', 'JOSE SILVERIO BARROSO', 'MARIA', 'serveuse', '1968-04-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (118, '6895', 'LIMA PERREIRA', 'CATIA INES', 'serveuse', '1995-06-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (102, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (110, '5550', 'DISTANTE', 'FRANCESCO', 'serveur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (112, '5230', 'SIMEN ABDEL MONEM', 'BEN', 'serveur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (116, '7052', 'MASTRINI', 'MARCO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (145, '5270', 'BIGOS', 'Grzegorz', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (144, '8070', 'LOPES DA CRUZ', 'SIMARA', 'plongeuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (130, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (121, '5585', 'DO ROSARIO', 'TIFFANY', 'APPRENTI EN SALLE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (126, '5510', 'D''EUGENIO', 'PIERO', 'chef cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (127, '7750', 'RICCI', 'Gabriele', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (128, '1172', 'BUCHICCHIO', 'DONATO', 'chef cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (119, '7178', 'MORHTASSI', 'KARIM', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (120, '7490', 'PERREIRA', 'ANTONIO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (138, '7965', 'SAVALLI', 'Delia', 'pâtissier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (124, '7941', 'SABBA', 'LEONARD', 'musicien', '1954-08-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (105, '3600', 'PINTO DA COSTA', 'GRACINDA', 'Hôtesse d''accueil/serveuse', '1974-04-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (106, '2701', 'WEILER KIEFFER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (122, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1994-02-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (107, '7950', 'SANTORO', 'DARIO', 'Hôtesse d''accueil/serveuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (123, '8155', 'TAVARES LOPES', 'JOAO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (146, '5506', 'COSTA', 'Giovanni', 'RESPONSABLE DU BAR', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (147, '5697', 'EMBAREK BEN MOHAMED', 'Francoise', 'Responsable experimente', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (148, '6770 ', 'KARATHANASIS', 'Evangelos', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (149, '7130', 'MESSINA', 'Giovanni', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (150, '6876', 'LAMENDOUR', 'JULIEN', 'serveur/barman', '1998-01-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (125, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (151, 'AA1', 'Mustermann', 'Max', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (129, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/ cuisinier', '1980-02-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (139, '5540', 'DELL''AVERSANA', 'Shree', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (140, '7099', 'MARZOUK', 'Hassan', 'pizzaiolo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (142, '5600', 'DOS SANTOS MORENO', 'Alcinda', 'plongeuse', '1960-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (143, '5515', 'DA LUZ', 'CANDIDA', 'plongeuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (141, NULL, 'IBRAHIMI', 'Blade', 'APPRENTI EN CUISINE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (137, '7951', 'SANTORO', 'DAVIDE', 'Cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (1, 'Cuisine', NULL, '["2","4"]', NULL); +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (2, 'Service', NULL, '["2","4"]', NULL); +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (4, 'Administration', NULL, '["2","4"]', true); -- -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (39, 39, '2015-07-01', 64.8750000000000000, 15, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (40, 40, '2011-10-01', 86.5000000000000000, 20, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (11, 11, '2000-01-01', 129.7500000000000000, 30, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (43, 43, '2000-01-01', 129.7500000000000000, 30, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (6, 6, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (10, 10, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (12, 12, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (13, 13, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (14, 14, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (17, 17, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (19, 19, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (25, 25, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (30, 30, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (31, 31, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (36, 36, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (37, 37, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (41, 41, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (42, 42, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (44, 44, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (45, 45, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (1, 1, '2015-06-22', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (2, 2, '2005-04-19', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (3, 3, '2007-08-14', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (4, 4, '2015-04-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (5, 5, '2015-03-10', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (7, 7, '2015-11-09', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (8, 8, '2016-02-13', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (9, 9, '2016-01-18', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (15, 15, '2014-11-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (16, 16, '2015-10-08', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (18, 18, '2016-05-30', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (20, 20, '2015-12-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (21, 21, '2005-01-08', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (22, 22, '2014-04-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (23, 23, '2013-01-07', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (24, 24, '2005-05-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (26, 26, '2008-07-10', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (27, 27, '2013-01-07', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (28, 28, '2012-10-03', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (29, 29, '2015-06-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (32, 32, '2006-10-23', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (33, 33, '1995-07-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (34, 34, '1992-03-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (35, 35, '2011-07-05', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (38, 38, '2010-10-04', 173.0000000000000000, 40, NULL); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (70, 131, '1995-07-01', 1, 6, NULL, 6, '20:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (79, 111, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (57, 104, '2015-11-15', 4, 6, NULL, 1, '30:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (81, 116, '2020-01-01', 2, 6, '2019-02-28', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (66, 124, '2016-04-01', 2, 6, '2019-05-31', 1, '12:30:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (59, 106, '2015-07-01', 2, 6, NULL, 1, '12:30:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00'); -- --- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (1, 'cuisine', NULL); -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (2, 'service', NULL); -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (3, 'caisse', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (992, 27, 146, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (993, 27, 132, '88:00:00', '93:20:00', '88:00:00', '00:00:00', '00:00:00', '-05:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (996, 27, 112, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (999, 27, 127, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1000, 27, 149, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1001, 27, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1002, 27, 121, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1003, 27, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1004, 27, 119, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1006, 27, 147, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1009, 27, 151, '120:00:00', '133:20:00', '120:00:00', '00:00:00', '00:00:00', '-13:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1010, 27, 138, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1012, 27, 134, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1013, 27, 144, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1014, 27, 102, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1018, 27, 111, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1019, 27, 128, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1023, 27, 139, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1024, 27, 141, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1027, 27, 110, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1028, 27, 145, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1029, 27, 148, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1032, 27, 143, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1094, 29, 144, '216:00:00', '213:20:00', '216:00:00', '00:00:00', '00:00:00', '02:40:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -- --- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012470, 125, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012471, 125, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012477, 125, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012478, 125, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012449, 125, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012450, 125, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012456, 125, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012457, 125, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012463, 125, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012464, 125, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012484, 125, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012485, 125, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012491, 125, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012492, 125, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012498, 125, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012499, 125, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044731, 111, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); + + +-- +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '20:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '04:00:00', '2020-01-13', NULL, '24:00:00', 3, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '13:20:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-13:20:00', '2020-01-27', NULL, '00:00:00', 2, 2, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '33:20:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '06:40:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '13:20:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '02:40:00', '2020-03-30', NULL, '16:00:00', 2, 2, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -- @@ -179,1391 +5247,107 @@ INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (3, 'caisse -- --- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: - --- - - - --- --- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: - --- - -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3118, 3, '2019-12-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1817, 34, '2017-07-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1847, 37, '2017-07-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3119, 3, '2019-12-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3120, 3, '2020-01-01', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3121, 3, '2020-01-02', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3122, 3, '2020-01-03', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2405, 20, '2017-06-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1767, 8, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1768, 8, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1769, 8, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1770, 8, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1771, 8, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1772, 8, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1773, 8, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1774, 8, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1775, 8, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1776, 8, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1777, 8, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1778, 8, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1779, 8, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1780, 8, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1781, 8, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1782, 8, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1783, 8, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1784, 8, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1785, 8, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1786, 8, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1787, 8, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1788, 8, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1789, 8, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1790, 8, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1791, 8, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1792, 8, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1793, 8, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1794, 8, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1795, 8, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1796, 8, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1797, 8, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1798, 8, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1799, 8, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1800, 8, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1801, 8, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1802, 8, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1803, 8, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1804, 8, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1805, 8, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1806, 8, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1807, 8, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1808, 8, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1809, 8, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1810, 8, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1811, 8, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1812, 34, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1813, 34, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1814, 34, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1815, 34, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1816, 34, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1818, 34, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1819, 34, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1820, 34, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1821, 34, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1822, 34, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1823, 34, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1824, 34, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1825, 34, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1826, 34, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1827, 34, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1828, 34, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1829, 34, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1830, 34, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1831, 34, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1832, 34, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1833, 34, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1834, 34, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1835, 34, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1836, 34, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1837, 34, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1838, 34, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1839, 34, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1840, 34, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1841, 34, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1842, 34, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1843, 34, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1844, 34, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1845, 34, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1846, 34, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1848, 37, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1849, 37, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1850, 37, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1851, 37, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1852, 37, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1853, 36, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1854, 36, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1855, 36, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1856, 36, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1857, 36, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1858, 36, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1859, 36, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1860, 36, '2017-06-05', '11:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1861, 36, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1862, 36, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1863, 36, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1864, 36, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1865, 36, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1866, 36, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1867, 36, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1868, 36, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1869, 36, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1870, 36, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1871, 36, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1872, 36, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1873, 36, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1874, 36, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1875, 36, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1876, 36, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1877, 36, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1878, 36, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1879, 36, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1880, 36, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1881, 36, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1882, 36, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1883, 36, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1884, 36, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1885, 36, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1886, 36, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1887, 25, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1888, 25, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1889, 25, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1890, 25, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1891, 25, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1892, 25, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1893, 25, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1894, 25, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1895, 25, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1896, 25, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1897, 25, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1898, 25, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1899, 25, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1900, 25, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1901, 25, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1902, 25, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1903, 25, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1904, 25, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1905, 25, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1906, 25, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1907, 25, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1908, 25, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1909, 25, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1910, 25, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1911, 25, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1912, 25, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1913, 25, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1914, 25, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1915, 25, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1916, 25, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1917, 25, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1918, 25, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1919, 25, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1920, 33, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1921, 33, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1922, 33, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1923, 33, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1924, 33, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1925, 33, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1926, 33, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1927, 33, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1928, 33, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1929, 33, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1930, 33, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1931, 33, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1932, 33, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1933, 33, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1934, 33, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1935, 33, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1936, 33, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1937, 33, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1938, 33, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1939, 33, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1940, 33, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1941, 33, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1942, 33, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1943, 33, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1944, 33, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1945, 33, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1946, 33, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1947, 33, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1948, 33, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1949, 33, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1950, 33, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1951, 33, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1952, 33, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1953, 33, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1954, 33, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1955, 33, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1956, 33, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1957, 33, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1958, 33, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1959, 33, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1960, 33, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1961, 33, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1962, 33, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1963, 11, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1964, 11, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1965, 11, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1966, 11, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1967, 11, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1968, 11, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1969, 11, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1970, 11, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1971, 11, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1972, 11, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1973, 11, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1974, 11, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1975, 11, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1976, 11, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1977, 11, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1978, 11, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1979, 11, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1980, 11, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1981, 11, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1982, 11, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1983, 11, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1984, 11, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1985, 11, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1986, 11, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1987, 11, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1988, 11, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1989, 11, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1990, 11, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1991, 11, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1992, 11, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1993, 11, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1994, 11, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1995, 11, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1996, 11, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1997, 11, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1998, 11, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1999, 11, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2000, 11, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2001, 11, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2002, 11, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2003, 11, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2004, 11, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2005, 11, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2006, 29, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2007, 29, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2008, 29, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2009, 29, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2010, 29, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2011, 29, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2012, 29, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2013, 29, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2014, 29, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2015, 29, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2016, 29, '2017-07-06', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2017, 29, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2018, 29, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2019, 29, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2020, 29, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2021, 29, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2022, 29, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2023, 29, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2024, 29, '2017-07-07', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2025, 29, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2026, 29, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2027, 29, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2028, 29, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2029, 29, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2030, 29, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2031, 29, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2032, 29, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2033, 29, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2034, 29, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2035, 29, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2036, 29, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2037, 29, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2038, 29, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2039, 29, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2040, 29, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2041, 29, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2042, 29, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2043, 29, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2044, 29, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2045, 32, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2046, 32, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2047, 32, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2048, 32, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2049, 32, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2050, 32, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2051, 32, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2052, 32, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2053, 32, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2054, 32, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2055, 32, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2056, 32, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2057, 32, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2058, 32, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2059, 32, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2060, 32, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2061, 32, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2062, 32, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2063, 32, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2064, 32, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2065, 32, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2066, 32, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2067, 32, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2068, 32, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2069, 32, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2070, 32, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2071, 32, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2072, 32, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2073, 15, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2074, 15, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2075, 15, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2076, 15, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2077, 15, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2078, 15, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2079, 15, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2080, 15, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2081, 15, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2082, 15, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2083, 15, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2084, 15, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2085, 15, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2086, 15, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2087, 15, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2088, 15, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2089, 15, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2090, 15, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2091, 15, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2092, 15, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2093, 15, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2094, 15, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2095, 15, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2096, 15, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2097, 15, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2098, 15, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2099, 15, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2100, 15, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2101, 15, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2102, 15, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2103, 15, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2104, 24, '2017-07-12', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2105, 24, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2106, 24, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2107, 24, '2017-07-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2108, 24, '2017-07-16', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2109, 24, '2017-07-31', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2110, 24, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2111, 24, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2112, 24, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2113, 24, '2017-08-03', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2114, 24, '2017-07-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2115, 24, '2017-06-21', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2116, 24, '2017-06-17', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2117, 24, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2118, 24, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2119, 24, '2017-08-01', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2120, 24, '2017-06-29', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2121, 24, '2017-06-28', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2122, 24, '2017-06-16', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2123, 24, '2017-07-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2124, 24, '2017-06-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2125, 24, '2017-06-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2126, 24, '2017-07-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2127, 24, '2017-07-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2128, 24, '2017-08-04', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2129, 24, '2017-08-02', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2130, 24, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2131, 24, '2017-07-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2132, 24, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2133, 24, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2134, 24, '2017-07-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2135, 24, '2017-07-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2136, 24, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2137, 24, '2017-06-18', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2138, 24, '2017-06-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2139, 24, '2017-06-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2140, 24, '2017-06-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2141, 24, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2142, 24, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2143, 24, '2017-06-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2144, 1, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2145, 1, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2146, 1, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2147, 1, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2148, 1, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2149, 1, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2150, 1, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2151, 1, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2152, 1, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2153, 1, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2154, 1, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2155, 1, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2156, 1, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2157, 1, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2158, 1, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2159, 1, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2160, 1, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2161, 1, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2162, 1, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2163, 1, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2164, 1, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2165, 1, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2166, 1, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2167, 1, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2168, 1, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2169, 1, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2170, 1, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2171, 1, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2172, 1, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2173, 1, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2174, 26, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2175, 26, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2176, 26, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2177, 26, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2178, 26, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2179, 26, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2180, 26, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2181, 26, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2182, 26, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2183, 26, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2184, 26, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2185, 26, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2186, 26, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2187, 26, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2188, 26, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2189, 26, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2190, 26, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2191, 26, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2192, 26, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2193, 26, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2194, 26, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2195, 26, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2196, 26, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2197, 26, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2198, 26, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2199, 26, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2200, 26, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2201, 26, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2202, 26, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2203, 26, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2204, 26, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2205, 26, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2206, 26, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2207, 26, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2208, 26, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2209, 26, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2210, 26, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2211, 26, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2212, 30, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2213, 30, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2214, 30, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2215, 30, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2216, 30, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2217, 30, '2017-06-25', '10:30:00', '14:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2218, 30, '2017-07-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2219, 30, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2220, 30, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2221, 30, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2222, 30, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2223, 30, '2017-07-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2224, 30, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2225, 30, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2226, 30, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2227, 30, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2228, 30, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2229, 30, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2230, 30, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2231, 30, '2017-07-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2232, 28, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2233, 28, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2234, 28, '2017-06-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2235, 28, '2017-06-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2236, 28, '2017-06-26', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2237, 28, '2017-06-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2238, 28, '2017-07-27', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2239, 28, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2240, 28, '2017-07-24', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2241, 28, '2017-07-22', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2242, 28, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2243, 28, '2017-07-13', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2244, 28, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2245, 28, '2017-07-26', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2246, 28, '2017-07-19', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2247, 28, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2248, 28, '2017-07-25', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2249, 28, '2017-06-27', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2250, 28, '2017-07-30', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2251, 28, '2017-07-21', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2252, 28, '2017-06-20', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2253, 28, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2254, 28, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2255, 28, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2256, 28, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2257, 28, '2017-06-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2258, 28, '2017-07-15', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2259, 28, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2260, 28, '2017-07-29', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2261, 28, '2017-07-20', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2262, 28, '2017-07-28', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2263, 28, '2017-07-16', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2264, 28, '2017-07-23', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2265, 28, '2017-07-12', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2266, 28, '2017-07-14', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2267, 28, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2268, 19, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2269, 19, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2270, 19, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2271, 19, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2272, 19, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2273, 19, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2274, 19, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2275, 19, '2017-06-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2276, 19, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2277, 19, '2017-06-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2278, 19, '2017-07-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2279, 19, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2280, 19, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2281, 19, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2282, 19, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2283, 19, '2017-06-21', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2284, 19, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2285, 19, '2017-06-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2286, 19, '2017-07-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2287, 19, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2288, 19, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2289, 19, '2017-06-23', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2290, 19, '2017-06-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2291, 19, '2017-06-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2292, 19, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2293, 35, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2294, 35, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2295, 35, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2296, 35, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2297, 35, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2298, 35, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2299, 35, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2300, 35, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2301, 35, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2302, 35, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2303, 35, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2304, 35, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2305, 35, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2306, 35, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2307, 35, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2308, 35, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2309, 35, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2310, 35, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2311, 35, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2312, 35, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2313, 35, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2314, 35, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2315, 35, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2316, 35, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2317, 35, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2318, 35, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2319, 35, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2320, 35, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2321, 35, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2322, 35, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2323, 35, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2324, 35, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2325, 35, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2326, 4, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2327, 4, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2328, 4, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2329, 4, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2330, 4, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2331, 4, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2332, 4, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2333, 4, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2334, 4, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2335, 4, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2336, 4, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2337, 4, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2338, 4, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2339, 4, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2340, 4, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2341, 4, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2342, 4, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2343, 4, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2344, 4, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2345, 4, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2346, 4, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2347, 4, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2348, 4, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2349, 4, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2350, 4, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2351, 4, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2352, 4, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2353, 4, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2354, 4, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2355, 4, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2356, 4, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2357, 4, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2358, 4, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2359, 4, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2360, 4, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2361, 4, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2362, 4, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2363, 4, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2364, 4, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2365, 4, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2366, 4, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2367, 4, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2368, 4, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2369, 4, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2370, 4, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2371, 20, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2372, 20, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2373, 20, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2374, 20, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2375, 20, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2376, 20, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2377, 20, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2378, 20, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2379, 20, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2380, 20, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2381, 20, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2382, 20, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2383, 20, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2384, 20, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2385, 20, '2017-06-14', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2386, 20, '2017-06-15', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2387, 20, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2388, 20, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2389, 20, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2390, 20, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2391, 20, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2392, 20, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2393, 20, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2394, 20, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2395, 20, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2396, 20, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2397, 20, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2398, 20, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2399, 20, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2400, 20, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2401, 20, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2402, 20, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2403, 20, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2404, 20, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2406, 20, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2407, 20, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2408, 20, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2409, 20, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2410, 20, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2411, 20, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2412, 20, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2413, 20, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2414, 20, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2415, 20, '2017-06-16', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2416, 16, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2417, 16, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2418, 16, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2419, 16, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2420, 16, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2421, 16, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2422, 16, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2423, 16, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2424, 16, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2425, 16, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2426, 16, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2427, 16, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2428, 16, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2429, 16, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2430, 16, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2431, 16, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2432, 16, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2433, 16, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2434, 16, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2435, 16, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2436, 16, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2437, 16, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2438, 16, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2439, 16, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2440, 16, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2441, 16, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2442, 16, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2443, 16, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2444, 16, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2445, 16, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2446, 16, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2447, 16, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2448, 16, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2449, 16, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2450, 16, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2451, 16, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2452, 16, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2453, 16, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2454, 16, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2455, 16, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2456, 16, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2457, 16, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2458, 16, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2459, 16, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2460, 16, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2461, 43, '2017-07-11', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2462, 43, '2017-07-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2463, 43, '2017-06-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2464, 43, '2017-06-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2465, 43, '2017-06-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2466, 43, '2017-06-22', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2467, 43, '2017-06-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2468, 43, '2017-07-25', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2469, 43, '2017-07-10', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2470, 43, '2017-08-02', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2471, 43, '2017-08-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2472, 43, '2017-07-18', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2473, 43, '2017-07-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2474, 43, '2017-07-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2475, 43, '2017-07-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2476, 43, '2017-07-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2477, 43, '2017-07-24', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2478, 43, '2017-06-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2479, 43, '2017-06-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2480, 43, '2017-07-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2481, 43, '2017-08-01', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2482, 43, '2017-06-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2483, 43, '2017-06-29', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2484, 43, '2017-06-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2485, 43, '2017-06-16', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2486, 43, '2017-06-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2487, 43, '2017-07-17', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2488, 43, '2017-06-15', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2489, 43, '2017-07-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2490, 43, '2017-07-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2491, 43, '2017-07-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2492, 43, '2017-06-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2493, 43, '2017-07-05', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2494, 43, '2017-07-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2495, 43, '2017-07-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2496, 43, '2017-07-31', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2497, 43, '2017-07-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2498, 43, '2017-07-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2499, 43, '2017-06-30', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2500, 43, '2017-08-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2501, 43, '2017-06-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2502, 17, '2017-06-22', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2503, 17, '2017-06-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2504, 17, '2017-06-09', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2505, 17, '2017-06-08', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2506, 17, '2017-06-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2507, 17, '2017-07-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2508, 17, '2017-07-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2509, 17, '2017-07-10', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2510, 17, '2017-07-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2511, 17, '2017-08-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2512, 17, '2017-06-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2513, 17, '2017-07-17', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2514, 17, '2017-06-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2515, 17, '2017-06-16', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2516, 17, '2017-08-01', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2517, 17, '2017-06-23', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2518, 17, '2017-06-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2519, 17, '2017-06-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2520, 17, '2017-07-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2521, 17, '2017-07-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2522, 17, '2017-07-31', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2523, 17, '2017-07-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2524, 17, '2017-07-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2525, 17, '2017-06-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2526, 17, '2017-07-11', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2527, 17, '2017-07-24', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2528, 17, '2017-07-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2529, 17, '2017-07-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2530, 17, '2017-07-18', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2531, 17, '2017-08-02', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2532, 17, '2017-07-25', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2533, 17, '2017-06-15', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2534, 17, '2017-07-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2535, 17, '2017-06-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2536, 17, '2017-06-29', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2537, 17, '2017-06-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2538, 17, '2017-07-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2539, 17, '2017-06-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2540, 17, '2017-08-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2541, 17, '2017-06-30', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2542, 17, '2017-06-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2543, 17, '2017-07-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2544, 17, '2017-07-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2545, 17, '2017-06-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2546, 17, '2017-07-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2547, 2, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2548, 2, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2549, 2, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2550, 2, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2551, 2, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2552, 2, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2553, 2, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2554, 2, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2555, 2, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2556, 2, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2557, 2, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2558, 2, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2559, 2, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2560, 2, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2561, 2, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2562, 2, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2563, 2, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2564, 2, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2565, 2, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2566, 2, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2567, 2, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2568, 2, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2569, 2, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2570, 2, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2571, 2, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2572, 2, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2573, 2, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2574, 2, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2575, 2, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2576, 2, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2577, 2, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2578, 2, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2579, 2, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2580, 2, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2581, 2, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2582, 2, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2583, 2, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2584, 2, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2585, 2, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2586, 2, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2587, 2, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2588, 2, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2589, 2, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2590, 2, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2591, 2, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2592, 7, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2593, 7, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2594, 7, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2595, 7, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2596, 7, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2597, 7, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2598, 7, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2599, 7, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2600, 7, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2601, 7, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2602, 7, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2603, 7, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2604, 7, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2605, 7, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2606, 7, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2607, 7, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2608, 7, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2609, 7, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2610, 7, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2611, 7, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2612, 7, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2613, 7, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2614, 7, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2615, 7, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2616, 7, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2617, 7, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2618, 7, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2619, 7, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2620, 7, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2621, 7, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2622, 7, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2623, 7, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2624, 7, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2625, 7, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2626, 7, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2627, 7, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2628, 7, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2629, 7, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2630, 7, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2631, 7, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2632, 7, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2633, 7, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2634, 7, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2635, 7, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2636, 7, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2637, 9, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2638, 9, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2639, 9, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2640, 9, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2641, 9, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2642, 9, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2643, 9, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2644, 9, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2645, 9, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2646, 9, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2647, 9, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2648, 9, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2649, 9, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2650, 9, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2651, 9, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2652, 9, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2653, 9, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2654, 9, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2655, 9, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2656, 9, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2657, 9, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2658, 9, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2659, 9, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2660, 9, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2661, 9, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2662, 9, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2663, 9, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2664, 9, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2665, 9, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2666, 9, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2667, 9, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2668, 9, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2669, 9, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2670, 9, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2671, 9, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2672, 9, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2673, 9, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2674, 9, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2675, 9, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2676, 9, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2677, 9, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2678, 9, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2679, 9, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2680, 9, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2681, 9, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2682, NULL, '2017-06-23', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2683, NULL, '2017-06-16', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2684, NULL, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2685, NULL, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2686, NULL, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2687, NULL, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2688, NULL, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2689, NULL, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2690, NULL, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2691, NULL, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2692, NULL, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2693, NULL, '2017-06-09', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2694, NULL, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2695, NULL, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2696, NULL, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2697, NULL, '2017-08-04', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2698, NULL, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2699, NULL, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2700, NULL, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2701, NULL, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2702, NULL, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2703, NULL, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2704, NULL, '2017-07-07', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2705, NULL, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2706, NULL, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2707, NULL, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2708, NULL, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2709, NULL, '2017-07-21', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2710, NULL, '2017-07-14', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2711, NULL, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2712, NULL, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2713, NULL, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2714, NULL, '2017-07-28', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2715, NULL, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2716, NULL, '2017-06-30', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2717, NULL, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2718, NULL, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2719, NULL, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2720, NULL, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2721, NULL, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2722, NULL, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2723, NULL, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2724, NULL, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2725, NULL, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2726, NULL, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2727, 13, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2728, 13, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2729, 13, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2730, 13, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2731, 13, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2732, 13, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2733, 13, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2734, 13, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2735, 13, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2736, 13, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2737, 13, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2738, 13, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2739, 13, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2740, 13, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2741, 13, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2742, 13, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2743, 13, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2744, 13, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2745, 13, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2746, 13, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2747, 13, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2748, 13, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2749, 13, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2750, 13, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2751, 13, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2752, 13, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2753, 13, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2754, 13, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2755, 13, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2756, 31, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2757, 31, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2758, 31, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2759, 31, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2760, 31, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2761, 31, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2762, 31, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2763, 31, '2017-06-09', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2764, 31, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2765, 31, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2766, 31, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2767, 31, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2768, 31, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2769, 31, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2770, 31, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2771, 31, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2772, 31, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2773, 31, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2774, 31, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2775, 31, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2776, 31, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2777, 31, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2778, 31, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2779, 31, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2780, 31, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2781, 12, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2782, 12, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2783, 12, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2784, 12, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2785, 12, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2786, 12, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2787, 12, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2788, 12, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2789, 12, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2790, 12, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2791, 12, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2792, 12, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2793, 12, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2794, 12, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2795, 12, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2796, 12, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2797, 12, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2798, 12, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2799, 12, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2800, 12, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2801, 12, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2802, 12, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2803, 12, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2804, 12, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2805, 12, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2806, 12, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2807, 12, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2808, 12, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2809, 12, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2810, 12, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2811, 12, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2812, 12, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2813, 12, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2814, 12, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2815, 12, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2816, 12, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2817, 12, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2818, 12, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2819, 12, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2820, 12, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2821, 12, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2822, 12, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2823, 12, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2824, 12, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2825, 12, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2826, 12, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2827, 12, '2017-06-10', '10:30:00', '15:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2828, 12, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2829, 12, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2830, 12, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2831, 12, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2832, 12, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2833, 12, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2834, 12, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2835, 23, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2836, 23, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2837, 23, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2838, 23, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2839, 23, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2840, 23, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2841, 23, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2842, 23, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2843, 23, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2844, 23, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2845, 23, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2846, 23, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2847, 23, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2848, 23, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2849, 23, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2850, 23, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2851, 23, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2852, 23, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2853, 23, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2854, 23, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2855, 23, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2856, 23, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2857, 23, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2858, 23, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2859, 23, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2860, 23, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2861, 23, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2862, 23, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2863, 23, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2864, 23, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2865, 23, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2866, 23, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2867, 23, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2868, 23, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2869, 23, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2870, 23, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2871, 23, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2872, 23, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2873, 23, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2874, 21, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2875, 21, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2876, 21, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2877, 21, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2878, 21, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2879, 21, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2880, 21, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2881, 21, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2882, 21, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2883, 21, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2884, 21, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2885, 21, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2886, 21, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2887, 21, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2888, 21, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2889, 21, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2890, 21, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2891, 21, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2892, 21, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2893, 21, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2894, 21, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2895, 21, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2896, 21, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2897, 21, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2898, 21, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2899, 21, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2900, 21, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2901, 21, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2902, 21, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2903, 21, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2904, 21, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2905, 21, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2906, 21, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2907, 21, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2908, 21, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2909, 21, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2910, 21, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2911, 21, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2912, 10, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2913, 10, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2914, 10, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2915, 10, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2916, 10, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2917, 10, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2918, 10, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2919, 10, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2920, 10, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2921, 10, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2922, 10, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2923, 10, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2924, 10, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2925, 10, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2926, 10, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2927, 10, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2928, 10, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2929, 10, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2930, 10, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2931, 10, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2932, 10, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2933, 10, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2934, 10, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2935, 10, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2936, 10, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2937, 10, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2938, 10, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2939, 10, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2940, 10, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2941, 10, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2942, 10, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2943, 10, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2944, 10, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2945, 10, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2946, 10, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2947, 10, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2948, 10, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2949, 10, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2950, 10, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2951, 10, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2952, 10, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2953, 10, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2954, 10, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2955, 10, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2956, 10, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2957, 5, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2958, 5, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2959, 5, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2960, 5, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2961, 5, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2962, 5, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2963, 5, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2964, 5, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2965, 5, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2966, 5, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2967, 5, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2968, 5, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2969, 5, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2970, 5, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2971, 5, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2972, 5, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2973, 5, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2974, 5, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2975, 5, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2976, 5, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2977, 5, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2978, 5, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2979, 5, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2980, 5, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2981, 5, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2982, 5, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2983, 5, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2984, 5, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2985, 5, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2986, 5, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2987, 5, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2988, 5, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2989, 5, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2990, 5, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2991, 5, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2992, 5, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2993, 5, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2994, 5, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2995, 5, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2996, 5, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2997, 5, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2998, 5, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2999, 5, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3000, 5, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3001, 5, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3002, 44, '2017-07-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3003, 44, '2017-07-20', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3004, 44, '2017-07-31', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3005, 44, '2017-07-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3006, 44, '2017-08-03', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3007, 44, '2017-06-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3008, 44, '2017-06-30', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3009, 44, '2017-07-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3010, 44, '2017-07-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3011, 44, '2017-07-05', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3012, 44, '2017-07-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3013, 44, '2017-06-29', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3014, 44, '2017-06-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3015, 44, '2017-06-16', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3016, 44, '2017-07-17', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3017, 44, '2017-07-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3018, 44, '2017-06-15', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3019, 44, '2017-06-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3020, 44, '2017-06-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3021, 44, '2017-07-07', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3022, 44, '2017-08-01', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3023, 44, '2017-06-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3024, 44, '2017-07-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3025, 44, '2017-07-24', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3026, 44, '2017-06-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3027, 44, '2017-07-25', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3028, 44, '2017-07-10', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3029, 44, '2017-08-02', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3030, 44, '2017-08-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3031, 44, '2017-07-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3032, 44, '2017-07-18', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3033, 44, '2017-07-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3034, 44, '2017-06-08', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3035, 44, '2017-06-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3036, 44, '2017-06-09', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3037, 44, '2017-06-22', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3038, 44, '2017-07-11', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3039, 44, '2017-07-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3040, 44, '2017-06-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3041, 44, '2017-06-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3042, 22, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3043, 22, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3044, 22, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3045, 22, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3046, 22, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3047, 22, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3048, 22, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3049, 22, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3050, 22, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3051, 22, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3052, 22, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3053, 22, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3054, 22, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3055, 22, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3056, 22, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3057, 22, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3058, 22, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3059, 22, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3060, 22, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3061, 22, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3062, 22, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3063, 22, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3064, 22, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3065, 22, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3066, 22, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3067, 22, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3068, 22, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3069, 22, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3070, 22, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3071, 22, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3072, 22, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3073, 22, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3074, 22, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3075, 22, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3076, 22, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3077, 22, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3078, 22, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3079, 22, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3080, 22, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3081, 22, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3082, 22, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3083, 22, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3084, 3, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3085, 3, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3086, 3, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3087, 3, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3088, 3, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3089, 3, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3090, 3, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3091, 3, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3092, 3, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3093, 3, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3094, 3, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3095, 3, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3096, 3, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3097, 3, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3098, 3, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3099, 3, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3100, 3, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3101, 3, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3102, 3, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3103, 3, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3104, 3, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3105, 3, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3106, 3, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3107, 3, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3108, 3, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3109, 3, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3110, 3, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3111, 3, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3112, 3, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3113, 3, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3114, 3, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3115, 3, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3116, 3, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3117, 3, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: - +-- + + + +-- +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (5, 'extraordinaire', true, true, '#e26b0a'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (7, 'training', true, NULL, '#b7dee8'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (4, 'jour de repos', false, true, '#0070c0'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (3, 'comp. 44h', false, NULL, '#86a0af'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (6, 'comp. dim. trav.', false, NULL, '#aeb2b5'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (2, 'maladie', true, true, '#e3000f'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (1, 'normal', true, true, '#1b92bb'); -- -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- --- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (1, 'normal', true, NULL, NULL); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (5, 'congé extra', true, true, '#e26b0a'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (2, 'congé', true, true, '#fcd5b4'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (4, 'congé maladie', true, true, '#f2dcdb'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (3, 'training', true, NULL, '#b7dee8'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (6, 'jour ferié', true, NULL, '#92d050'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (7, 'libre jours', NULL, NULL, '#0070c0'); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (18, 135, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (56, 141, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (57, 142, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (58, 138, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (2, 141, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (3, 142, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (19, 133, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (20, 141, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (21, 142, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (22, 127, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (23, 136, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (24, 138, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (25, 139, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (26, 134, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (27, 131, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (28, 129, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (29, 128, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (30, 130, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (31, 143, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (33, 103, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (35, 125, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (32, 102, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (34, 104, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (36, 122, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (38, 117, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (37, 121, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (39, 115, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (40, 114, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (41, 119, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (42, 113, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (43, 146, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (44, 112, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (45, 108, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (46, 109, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (47, 147, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (48, 105, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (49, 118, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (59, 131, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (60, 135, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (61, 132, 9, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (62, 133, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (63, 127, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (64, 136, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (65, 140, 9, '184:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (66, 139, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (67, 134, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (68, 129, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (69, 144, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (70, 128, 9, '24:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (71, 130, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (72, 143, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (4, 138, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (5, 131, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (6, 135, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (7, 133, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (8, 127, 10, '320:00:00', '00:00:00', '00:00:00', '08:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (9, 136, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (10, 139, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (11, 134, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (12, 129, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (13, 144, 10, '218:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (14, 128, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (15, 130, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (16, 143, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (102, 151, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (50, 106, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (51, 111, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (52, 110, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (53, 145, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (54, 148, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (55, 149, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -- @@ -1572,30 +5356,32 @@ INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (1, 'superadmin', NULL, 'SuperAdmin'); INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (2, 'admin', NULL, 'Admin'); -INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (4, 'site', NULL, 'Site'); INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (5, 'user', true, 'Utilisateur'); INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (3, 'manager', NULL, 'Gérant'); +INSERT INTO public.usergroups (id, usergroup, isdefault, groupname) VALUES (4, 'teamleader', NULL, 'Responsable'); -- -- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: - -- -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (8, 'timetrackers', 'Pointeuses', 'Pointeuses', NULL, 'cube.svg', 7, 'schema'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (10, 'sites', 'Sites', 'Sites', NULL, 'cube.svg', 6, 'schema'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (4, 'profile', 'Profil', 'mes coordonnées', 5, 'user.svg', 9, 'global'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (5, 'users', 'Utilisateurs', 'utilisateurs', 2, 'group.svg', 11, 'global'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (7, 'staff', 'Employé(e)s', 'employé(e)s', 3, 'group.svg', 4, 'schema'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (9, 'planning', 'Planning', 'POT', 3, 'poticon.svg', 5, 'schema'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (6, 'companies', 'Entreprise', 'entreprise', 2, 'cube.svg', 10, 'global'); -INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) VALUES (11, 'workplans', 'Plans de travail', 'plans (modèles)', 3, 'calendar.svg', 8, 'schema'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (10, 'sites', 'Sites', 'Sites', NULL, 'cube.svg', 6, 'schema', NULL); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (8, 'timetrackers', 'Pointeuses', 'Pointeuses', NULL, 'cube.svg', 7, 'schema', NULL); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (5, 'users', 'Utilisateurs', 'utilisateurs', 2, 'group.svg', 11, 'global', '["2","3","4","5"]'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (6, 'companies', 'Entreprise', 'entreprise', 2, 'cube.svg', 10, 'global', '["2","3"]'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (7, 'staff', 'Salairiés', 'Salariés', 3, 'group.svg', 4, 'schema', '["2","3"]'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (11, 'workplans', 'Plans de travail', 'POT (modèles)', 3, 'calendar.svg', 8, 'schema', '["2","3","4"]'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (4, 'profile', 'Profil', 'Profil', 5, 'user.svg', 9, 'global', '["2","3","4","5"]'); +INSERT INTO public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) VALUES (9, 'periods', 'Planning', 'Période(s) de référence', 3, 'poticon.svg', 5, 'schema', '["2","3","4"]'); -- -- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: - -- -INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated) VALUES (1, 'DKS', '8b, rue du Moulin', '6914', 'Roodt-sur-Syre', 'Luxemburg', NULL, NULL, NULL, 'portanova', NULL, NULL, 'support@dks.lu', 's.à r.l.', NULL); +INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart) VALUES (25, 'test', '4, rue Principale', '3770', 'Tétange', 'Luxemburg', NULL, NULL, NULL, 'test', NULL, NULL, 'kilian@saffran.lu', 's.à r.l.', NULL, NULL, NULL, NULL); +INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart) VALUES (26, 'TEST2', '8b, rue du Moulin', '6914', 'Roodt-sur-Syre', 'Luxemburg', NULL, NULL, NULL, 'test2', NULL, NULL, 'support@dks.lu', NULL, NULL, NULL, NULL, NULL); +INSERT INTO public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart) VALUES (1, 'Portanova', 'rue de la faïencerie', NULL, 'Luxembourg', 'Luxemburg', NULL, NULL, NULL, 'portanova', NULL, NULL, 'support@dks.lu', 's.à r.l.', NULL, 'week', 8, '2019-12-30'); -- @@ -1706,39 +5492,176 @@ pot.lu Support-Team
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: - -- -INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company) VALUES (2, 'f7252754a4cb7391d966316351b3501bce81fee9bc0b71807ddf61281a27821e', '2019-12-20 11:03:08.757357', NULL, 'kilian@saffran.lu', NULL, NULL, '["portanova"]', '["5"]', 'Saffran', 'Kilian', '691504574', NULL, 1); -INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company) VALUES (1, '228c27a646f18ce069bc2b8ef091a03c46cd51557e5b5ac90abc05c4f635b3ba', '2019-10-10 17:12:11.934747', NULL, 'kilian.saffran@gmail.com', NULL, '6tgfkew', '["portanova"]', '["2","5","3"]', 'Saffran', 'Kilian', '+352691504574', 'Gérant', 1); +INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup) VALUES (1, '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec', '2019-10-10 17:12:11.934747', NULL, 'kilian.saffran@gmail.com', NULL, '6tgfkew', '["test","portanova"]', '["2","5","3","4"]', 'Saffran', 'Kilian', '+352691504574', 'Gérant', 1, 2); +INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup) VALUES (2, 'f7252754a4cb7391d966316351b3501bce81fee9bc0b71807ddf61281a27821e', '2019-12-20 11:03:08.757357', NULL, 'kilian@saffran.lu', NULL, NULL, '["portanova"]', '["5"]', 'Saffran', 'Kilian', '691504574', NULL, 1, 5); +INSERT INTO public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup) VALUES (4, 'ad3d14273d47ed24f6d62e3f8c64032e946d9e9d5965364a81e15d12a69cf2ce', '2019-12-29 16:53:19.68549', NULL, 'ksaffran@dks.lu', NULL, NULL, '["portanova"]', '["3","5"]', 'Saffran', 'Kilian', NULL, NULL, 1, 3); -- -- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: - -- +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (228, 'yQVWb3gmfQZbXhdgiexW1O2suUpzBlL02xM3qTgw', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', '2001:7e8:cc73:de00:a812:ebc7:72cb:2146', '2020-01-09 06:41:48.639525'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (229, 'OE2TqV8VRjYZmkSXr7qjQW4TVR8zvjJ9OCT4nRP5', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', '::1', '2020-01-09 10:37:54.604655'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (111, 'uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:213c:73ba:ffa7:842b', '2019-12-05 19:16:43.969105'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (112, 'mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:7946:65e2:f587:8b74', '2019-12-06 07:02:23.094765'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (113, 'HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-09 11:33:13.202044'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (114, 'aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362', '::1', '2019-12-10 15:55:53.526432'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (175, 'NjxbJc50MGk8kV9dH2G33mhWV5e4PTns3KuCMptp', 1, 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Mobile Safari/537.36', '::1', '2020-01-02 09:36:12.19675'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (176, 'd62Z9Se8i1QM2Zhx6JZz8TWz9eXvIlXMiPBhyGgG', 1, 'Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1', '::1', '2020-01-02 09:36:47.868479'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (232, 'EPjQ6DLhLgmxsW0euSnHhxOmC2iMrKlWpvCmYetA', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', '192.168.178.23', '2020-01-10 08:38:40.58899'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (178, 'yC6li3gqsuF9nPacybvBUPwzz3SoIyx71ui9nppF', 1, 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1', '::1', '2020-01-02 09:49:11.956938'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (122, 'Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2001:7e8:cc73:de00:d970:312a:d5d:db83', '2019-12-12 07:06:51.913155'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (124, 'NUTU0TkWd81oxH4ig52WCA3HzccA3bmHW5sMPCyT', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36', '::1', '2019-12-15 11:44:06.485589'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (198, 'dC237zuzY7HYOGvbFem5LeVuQ3XFRxSU0LOXa8nZ', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', '2001:7e8:cc73:de00:24c6:9f1e:3054:64dd', '2020-01-08 08:36:54.781554'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (93, '5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn', 1, 'Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36', '::1', '2019-12-04 14:58:48.993651'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (258, 's7C63JpbiZV34B1obie1a6JUnUaSJXl1VNYPndQv', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36', '::1', '2020-01-16 09:02:49.520835'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (98, '9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '::1', '2019-12-05 07:34:07.997426'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (99, 'v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '192.168.178.23', '2019-12-05 07:35:01.756219'); INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (160, 'pMEnznbOdbCeLbtKUwxgVbn2PNVzrF0HhvVHIWmL', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36', '::1', '2019-12-20 12:48:16.464228'); -INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (161, 'fvhUhEhy8bRQnrZd1I0oVdAwntMj86Xdr5Yzz6Yy', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', '::1', '2019-12-22 09:58:14.675553'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (162, 'RRiSGkElRtLTCs3lkdYpQNZDnxKJ2wOJdXrJ7WVO', 1, '192.168.178.23', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', '2019-12-24 10:59:50.644045'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (163, 'BlvRAYUeX78wr2OhPvWU5TrsNAmsooAQzWy0Ki4x', 1, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36', '2001:7e8:cc73:de00:f4f8:d2a7:1c8:2664', '2019-12-24 11:00:44.808971'); +INSERT INTO public.sessions (id, idsession, id_user, user_agent, remote_addr, created) VALUES (278, 'R65RJQKl3zSYyByNGuQOk3U0xYgWYKdGG9nfPXrI', 1, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36', '::1', '2020-02-03 17:19:26.880576'); + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: test; Owner: - +-- + +INSERT INTO test.reportperiod (id, periodname, startdate, enddate) VALUES (1, 'Periode X', '2020-01-06', '2019-12-29'); + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: test; Owner: - +-- + + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: test2; Owner: - +-- + + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: test2; Owner: - +-- + -- --- Data for Name: zzold_members; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: workplans; Type: TABLE DATA; Schema: test2; Owner: - -- -INSERT INTO public.zzold_members (id, surname, prename, phone, id_user, id_company, job) VALUES (1, 'Saffran', 'Kilian', NULL, 1, 1, NULL); -- --- Data for Name: zzold_useringroups; Type: TABLE DATA; Schema: public; Owner: - +-- Data for Name: worktypes; Type: TABLE DATA; Schema: test2; Owner: - -- -INSERT INTO public.zzold_useringroups (id, id_user, id_group) VALUES (1, 1, 1); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.sites_id_seq', 1, false); -- @@ -1748,6 +5671,27 @@ INSERT INTO public.zzold_useringroups (id, id_user, id_group) VALUES (1, 1, 1); SELECT pg_catalog.setval('demo.staff_id_seq', 1, true); +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - +-- + +SELECT pg_catalog.setval('demo.staffvacancyyear_id_seq', 1, false); + + -- -- Name: stations_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: - -- @@ -1763,45 +5707,52 @@ SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); -- --- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 7, true); +SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); -- --- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); -- -- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); +SELECT pg_catalog.setval('portanova.staff_id_seq', 151, true); -- -- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 3, true); +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); -- @@ -1812,24 +5763,31 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3122, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); + + +-- +-- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); -- -- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); +SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); -- @@ -1850,7 +5808,7 @@ SELECT pg_catalog.setval('public.apps_id_seq', 11, true); -- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -SELECT pg_catalog.setval('public.companies_id_seq', 24, true); +SELECT pg_catalog.setval('public.companies_id_seq', 26, true); -- @@ -1868,38 +5826,178 @@ SELECT pg_catalog.setval('public.mailtemplates_id_seq', 7, true); -- --- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -SELECT pg_catalog.setval('public.members_id_seq', 1, false); +SELECT pg_catalog.setval('public.sessions_id_seq', 278, true); -- --- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -SELECT pg_catalog.setval('public.sessions_id_seq', 161, true); +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); -- --- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - -- -SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); +SELECT pg_catalog.setval('public.users_id_seq', 4, true); -- --- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - -- -SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); +SELECT pg_catalog.setval('test.reportperiod_id_seq', 1, true); -- --- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: - +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staff_id_seq', 1, false); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staffperiodbase_id_seq', 1, false); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.staffworkplan_id_seq', 1, false); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.workplans_id_seq', 1, false); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: test; Owner: - +-- + +SELECT pg_catalog.setval('test.worktypes_id_seq', 1, false); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.reportperiod_id_seq', 1, false); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staff_id_seq', 1, false); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staffgroups_id_seq', 1, false); + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staffperiodbase_id_seq', 1, false); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staffvacancy_id_seq', 1, false); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staffvacancyyear_id_seq', 1, false); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.staffworkplan_id_seq', 1, false); + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - +-- + +SELECT pg_catalog.setval('test2.workplans_id_seq', 1, false); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: - -- -SELECT pg_catalog.setval('public.users_id_seq', 2, true); +SELECT pg_catalog.setval('test2.worktypes_id_seq', 1, false); -- diff --git a/dev/db/potlu_db.pg.full.sql b/dev/db/potlu_db.pg.full.sql index f07ddf3e..8ed0547f 100644 --- a/dev/db/potlu_db.pg.full.sql +++ b/dev/db/potlu_db.pg.full.sql @@ -34,6 +34,614 @@ CREATE SCHEMA portanova; ALTER SCHEMA portanova OWNER TO potlu_user; +-- +-- Name: test; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA test; + + +ALTER SCHEMA test OWNER TO potlu_user; + +-- +-- Name: test2; Type: SCHEMA; Schema: -; Owner: potlu_user +-- + +CREATE SCHEMA test2; + + +ALTER SCHEMA test2 OWNER TO potlu_user; + +-- +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='portanova'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from portanova.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + select max(id) into rpparentid from portanova.reportperiod; + --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; + INSERT INTO portanova.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; + perform portanova.update_all_staff_in_period(newperiodid); + return newperiodid; +end; +$$; + + +ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu_user; + +-- +-- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + + +ALTER FUNCTION portanova.getperiod_staffcontract(pid integer) OWNER TO potlu_user; + +-- +-- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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 portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +END; +$$; + + +ALTER FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) OWNER TO potlu_user; + +-- +-- Name: onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.onchange_reportperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + +-- +-- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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 bigint) OWNER TO potlu_user; + +-- +-- Name: set_staffperiod_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) 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 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, + 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; +$$; + + +ALTER FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_staffperiodweek_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from portanova.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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; +$$; + + +ALTER FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_stafftoperioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_stafftoperioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform portanova.set_periodday_sums(cid_staffworkplan); + 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 integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_stafftoperiodweeks(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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 , +coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , +coalesce(sum(dayhours),'00:00:00') as totalhours, +count(id) 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 +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 + --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) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + + +ALTER FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_all_staff_in_period(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from portanova.getperiod_staffcontract(pid_period) group by id_staff + loop + perform portanova.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + + +ALTER FUNCTION portanova.update_all_staff_in_period(pid_period integer) OWNER TO potlu_user; + +-- +-- Name: update_staff_in_period(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + BEGIN + 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); + perform portanova.set_staffperiod_sums(pid_period,pid_staff); + return true; + END; +$$; + + +ALTER FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_staffreportperiod(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM portanova.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO portanova.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + + +ALTER FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_staffweeksums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan bigint) 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 bigint) OWNER TO potlu_user; + +-- +-- Name: update_staffworkplan(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffworkplan(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: verify_perioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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; +$$; + + +ALTER FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: zzold_onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + +-- +-- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod where isvalidated != true + loop + perform portanova.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + + +ALTER FUNCTION portanova.zzold_refreshperiods() OWNER TO potlu_user; + +-- +-- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + -- -- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: potlu_user -- @@ -111,17 +719,16 @@ ALTER FUNCTION public.getmondays(vyear integer) OWNER TO potlu_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 integer, username text, usergroups text, userschemata text) +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroup text) LANGUAGE plpgsql - AS $$ - BEGIN - return QUERY select se.idsession,us.id,us.username,string_agg(distinct(ugrp.usergroup),',') as usergroups,json_array_elements_text(us.schemaaccess) as userschemata from sessions se + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,ugrp.usergroup from sessions se join users us on (us.id=se.id_user) -left join (SELECT users.id,json_array_elements_text(users.id_usergroups) AS id_usergroup FROM users) ugs on (us.id=ugs.id) -left join usergroups ugrp on (ugrp.id=ugs.id) +left join usergroups ugrp on (ugrp.id=us.id_usergroup) where se.idsession= vidsession and se.remote_addr= vremoteaddr and se.user_agent= vuseragent and -us.blocked is null group by se.id,us.id; - END; +us.blocked is null group by se.id,us.id,ugrp.id; + END; $$; @@ -161,6 +768,25 @@ $$; ALTER FUNCTION public.getweeks(vyear integer) OWNER TO potlu_user; +-- +-- Name: getweeksbydaterange(date, date); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.getweeksbydaterange(datefrom date, dateto date) RETURNS TABLE(calyear integer, calweek integer, weekstart date, weekend date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date_part('isoyear',daydate)::int as calyear,date_part('week',daydate)::int4 as calweek,date(date_trunc('week',daydate)) as weekstart , date(date_trunc('week',daydate) + interval '6 days') as weekend +from +(select datefrom + s*'1 day'::interval as daydate from +(select * from generate_series(0,dateto - datefrom )s)x ) d group by calyear,calweek,weekstart,weekend order by weekstart,weekend; + + END; +$$; + + +ALTER FUNCTION public.getweeksbydaterange(datefrom date, dateto date) OWNER TO potlu_user; + -- -- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: potlu_user -- @@ -180,6 +806,31 @@ $$; ALTER FUNCTION public.random_string(vlength integer) OWNER TO potlu_user; +-- +-- Name: staffworplan_contracthours(text, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.staffworplan_contracthours(vschemaname text, vcontractid integer) RETURNS void + LANGUAGE plpgsql + AS $$ +declare + cur_contracthours TEXT; + cur_startdate date; + cur_enddate date; + cur_id_staff int4; + BEGIN + execute 'select startdate,enddate,id_staff,to_char(to_timestamp((round(weekhours/weekdays,3)) * 60), ''MI:SS:00'') from ' || vschemaname || '.staffcontract where id=' || vcontractid || ';' into cur_startdate,cur_enddate,cur_id_staff,cur_contracthours; + if cur_enddate is null then + execute 'update ' || vschemaname || '.staffworkplan SET contracthours='''|| cur_contracthours || ''' WHERE id_staff=' || cur_id_staff || ' and daydate>=date(''' || to_char(cur_startdate,'YYYY-MM-DD') || ''');'; + else + execute 'update ' || vschemaname || '.staffworkplan SET contracthours='''|| cur_contracthours || ''' WHERE id_staff=' || cur_id_staff || ' and daydate between date(''' || to_char(cur_startdate,'YYYY-MM-DD') || ''') and date(''' || to_char(cur_enddate,'YYYY-MM-DD') || ''');'; + end if; + END; +$$; + + +ALTER FUNCTION public.staffworplan_contracthours(vschemaname text, vcontractid integer) OWNER TO potlu_user; + -- -- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: potlu_user -- @@ -248,27 +899,94 @@ $$; ALTER FUNCTION public.trg_update_monthlyhours() OWNER TO potlu_user; +-- +-- Name: weekvacancy(text, double precision, integer); Type: FUNCTION; Schema: public; Owner: potlu_user +-- + +CREATE FUNCTION public.weekvacancy(vschema text, vcalweek double precision, vidstaff integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + vret text; + xsql text; + begin + xsql := 'select ''{"vacancy":{'' || string_agg(''"'' || id_vacancytype || ''":'' || row_to_json(weekvacancy),'','') || ''}}'' from ( +select vk.id_vacancytype,sum(vk.vacancyhours) as vacancyhours,vt.vacancyname,vt.color,vt.isworktime from portanova.staffworkplan vk + +join ' || vschema || '.vacancytypes vt on (vt.id=vk.id_vacancytype) +where date_part(''week'', daydate)= ' || vcalweek || ' and id_staff= ' || vidstaff || ' group by vk.id_vacancytype,vt.vacancyname,vt.color,vt.isworktime) weekvacancy;'; + --raise notice '%s',xsql; + execute xsql into vret; +return vret; +END; +$$; + + +ALTER FUNCTION public.weekvacancy(vschema text, vcalweek double precision, vidstaff integer) OWNER TO potlu_user; + SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: staff; Type: TABLE; Schema: demo; Owner: potlu_user +-- Name: sites; Type: TABLE; Schema: demo; Owner: potlu_user -- -CREATE TABLE demo.staff ( +CREATE TABLE demo.sites ( id integer NOT NULL, - staffident text, - surname text, - prename text, - pincde text, - fingerprint text, - stations json, - id_user integer + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text ); -ALTER TABLE demo.staff OWNER TO potlu_user; +ALTER TABLE demo.sites OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.sites_id_seq OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.sites_id_seq OWNED BY demo.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.staff ( + id integer NOT NULL, + staffident text, + surname text, + prename text, + pincde text, + fingerprint text, + stations json, + id_user integer +); + + +ALTER TABLE demo.staff OWNER TO potlu_user; -- -- Name: staff_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user @@ -292,6 +1010,121 @@ ALTER TABLE demo.staff_id_seq OWNER TO potlu_user; ALTER SEQUENCE demo.staff_id_seq OWNED BY demo.staff.id; +-- +-- Name: stafftimetracks; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +ALTER TABLE demo.stafftimetracks OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.stafftimetracks_id_seq OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.stafftimetracks_id_seq OWNED BY demo.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +ALTER TABLE demo.staffvacancy OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.staffvacancy_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.staffvacancy_id_seq OWNED BY demo.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: demo; Owner: potlu_user +-- + +CREATE TABLE demo.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +ALTER TABLE demo.staffvacancyyear OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: demo; Owner: potlu_user +-- + +CREATE SEQUENCE demo.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE demo.staffvacancyyear_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: potlu_user +-- + +ALTER SEQUENCE demo.staffvacancyyear_id_seq OWNED BY demo.staffvacancyyear.id; + + -- -- Name: stations; Type: TABLE; Schema: demo; Owner: potlu_user -- @@ -369,25 +1202,26 @@ ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; -- --- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: editlog; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE TABLE portanova.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -ALTER TABLE portanova.reportperiod OWNER TO potlu_user; +ALTER TABLE portanova.editlog OWNER TO potlu_user; -- --- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.reportperiod_id_seq - AS integer +CREATE SEQUENCE portanova.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -395,40 +1229,35 @@ CREATE SEQUENCE portanova.reportperiod_id_seq CACHE 1; -ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.editlog_id_seq OWNER TO potlu_user; -- --- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; +ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; -- --- Name: sites; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.sites ( +CREATE TABLE portanova.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -ALTER TABLE portanova.sites OWNER TO potlu_user; +ALTER TABLE portanova.reportperiod OWNER TO potlu_user; -- --- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.sites_id_seq +CREATE SEQUENCE portanova.reportperiod_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -437,13 +1266,13 @@ CREATE SEQUENCE portanova.sites_id_seq CACHE 1; -ALTER TABLE portanova.sites_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; -- --- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; -- @@ -457,8 +1286,14 @@ CREATE TABLE portanova.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); @@ -494,9 +1329,11 @@ CREATE TABLE portanova.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); @@ -509,7 +1346,9 @@ ALTER TABLE portanova.staffcontract OWNER TO potlu_user; CREATE TABLE portanova.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); @@ -560,27 +1399,31 @@ ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffcontract -- --- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.stafftimetracks ( - id bigint NOT NULL, +CREATE TABLE portanova.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval ); -ALTER TABLE portanova.stafftimetracks OWNER TO potlu_user; +ALTER TABLE portanova.staffreportperiod OWNER TO potlu_user; -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.stafftimetracks_id_seq +CREATE SEQUENCE portanova.staffreportperiod_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -588,38 +1431,70 @@ CREATE SEQUENCE portanova.stafftimetracks_id_seq CACHE 1; -ALTER TABLE portanova.stafftimetracks_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.staffreportperiod_id_seq OWNER TO potlu_user; -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; +ALTER SEQUENCE portanova.staffreportperiod_id_seq OWNED BY portanova.staffreportperiod.id; -- --- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.staffvacancy ( +CREATE TABLE portanova.staffreportperioddays ( + id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + + +ALTER TABLE portanova.staffreportperioddays OWNER TO potlu_user; + +-- +-- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.zzold_staffreportperiodsums ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -ALTER TABLE portanova.staffvacancy OWNER TO potlu_user; +ALTER TABLE portanova.zzold_staffreportperiodsums OWNER TO potlu_user; -- --- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.staffvacancy_id_seq +CREATE SEQUENCE portanova.staffreportperiodsums_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -628,35 +1503,62 @@ CREATE SEQUENCE portanova.staffvacancy_id_seq CACHE 1; -ALTER TABLE portanova.staffvacancy_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.staffreportperiodsums_id_seq OWNER TO potlu_user; -- --- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; +ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; -- --- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.staffvacancyyear ( +CREATE TABLE portanova.staffreportperiodweeks ( id integer NOT NULL, id_staff integer, - vyear integer, - hours numeric, - days numeric + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); + + +ALTER TABLE portanova.staffreportperiodweeks OWNER TO potlu_user; + +-- +-- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffvacancy ( + id integer NOT NULL, + id_staff integer, + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); -ALTER TABLE portanova.staffvacancyyear OWNER TO potlu_user; +ALTER TABLE portanova.staffvacancy OWNER TO potlu_user; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.staffvacancyyear_id_seq +CREATE SEQUENCE portanova.staffvacancy_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -665,34 +1567,36 @@ CREATE SEQUENCE portanova.staffvacancyyear_id_seq CACHE 1; -ALTER TABLE portanova.staffvacancyyear_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.staffvacancy_id_seq OWNER TO potlu_user; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; +ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; -- --- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffweeksums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.staffworkplan ( - id bigint NOT NULL, - id_staff integer, - daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text -); +CREATE SEQUENCE portanova.staffweeksums_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffweeksums_id_seq OWNER TO potlu_user; + +-- +-- Name: staffweeksums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- +ALTER SEQUENCE portanova.staffweeksums_id_seq OWNED BY portanova.staffreportperiodweeks.id; -ALTER TABLE portanova.staffworkplan OWNER TO potlu_user; -- -- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user @@ -712,19 +1616,85 @@ ALTER TABLE portanova.staffworkplan_id_seq OWNER TO potlu_user; -- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffreportperioddays.id; -- --- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM portanova.reportperiod; +CREATE TABLE portanova.vacancydays ( + id integer NOT NULL, + daydate date, + vacancyname text +); + + +ALTER TABLE portanova.vacancydays OWNER TO potlu_user; + +-- +-- Name: vacancydays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.vacancydays_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.vacancydays_id_seq OWNER TO potlu_user; + +-- +-- Name: vacancydays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.vacancydays_id_seq OWNED BY portanova.vacancydays.id; + + +-- +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + + +ALTER TABLE portanova.vacancytypes OWNER TO potlu_user; + +-- +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; + + +ALTER TABLE portanova.vw_reportperioddata OWNER TO potlu_user; + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_reportperiodlist AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu_user; @@ -737,14 +1707,64 @@ CREATE VIEW portanova.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM portanova.staffcontract; ALTER TABLE portanova.vw_staffcontractdata OWNER TO potlu_user; +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE portanova.workplans OWNER TO potlu_user; + -- -- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -753,13 +1773,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (portanova.staffcontract sc - LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + sg.groupcolor, + sc.enddate, + sc.id_workplan, + wp.workplan + FROM ((portanova.staffcontract sc + LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) + LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + ORDER BY sc.startdate DESC, sc.enddate DESC; ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; @@ -771,12 +1796,18 @@ ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; CREATE VIEW portanova.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM portanova.staff; @@ -789,7 +1820,8 @@ ALTER TABLE portanova.vw_staffdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -802,7 +1834,8 @@ ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -813,16 +1846,17 @@ ALTER TABLE portanova.vw_staffgroupslist OWNER TO potlu_user; -- CREATE VIEW portanova.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM portanova.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (portanova.staff st + LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; @@ -1081,31 +2115,154 @@ CREATE VIEW portanova.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 + staffreportperioddays.timepause + FROM portanova.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; +-- +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.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)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; + + +ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu_user; + +-- +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((portanova.staffreportperiod srp + LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) + LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) + LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + + +ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM portanova.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + + +ALTER TABLE portanova.vw_staffworkplan_dailylist OWNER TO potlu_user; + -- -- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1153,9 +2310,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1198,9 +2370,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1243,9 +2430,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1288,9 +2490,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1333,9 +2550,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1378,9 +2610,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, to_char(max( CASE WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1423,253 +2670,133 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + stw.timepause + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; -- --- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplanlist AS - SELECT st.id AS id_staff, +CREATE VIEW portanova.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (portanova.vw_staffworkplan_weekly sp_dwt - LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (portanova.staffreportperioddays swp + JOIN portanova.staff st ON ((swp.id_staff = st.id))); + + +ALTER TABLE portanova.vw_staffworkplandata OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (portanova.staff st + LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); -ALTER TABLE portanova.vw_staffworkplanlist OWNER TO potlu_user; +ALTER TABLE portanova.vw_staffworkplanstafflist OWNER TO potlu_user; -- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; -ALTER TABLE portanova.workplans OWNER TO potlu_user; +ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user @@ -1683,25 +2810,6 @@ CREATE VIEW portanova.vw_workplanlist AS ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; --- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM portanova.workplans; - - -ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; - -- -- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1709,46 +2817,138 @@ ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; CREATE VIEW portanova.vw_workplansdata AS SELECT workplans.id, workplans.workplan, + to_char(((((((COALESCE(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM portanova.workplans; ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (portanova.workplans + JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + + +ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; + -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- @@ -1771,21 +2971,6 @@ ALTER TABLE portanova.workplans_id_seq OWNER TO potlu_user; ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; --- --- Name: worktypes; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - - -ALTER TABLE portanova.worktypes OWNER TO potlu_user; - -- -- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- @@ -1805,8 +2990,46 @@ ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; -- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; + + +-- +-- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- +CREATE VIEW portanova.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; + + +ALTER TABLE portanova.zzold_vw_staffworkplanlist OWNER TO potlu_user; -- -- Name: apps; Type: TABLE; Schema: public; Owner: potlu_user @@ -1820,7 +3043,8 @@ CREATE TABLE public.apps ( id_usergroup integer, icon text, sort integer, - menutype text + menutype text, + id_usergroups json ); @@ -1867,7 +3091,10 @@ CREATE TABLE public.companies ( schemata2 json, email text, socialtype text, - vatvalidated boolean + vatvalidated boolean, + reportperiodunit text, + reportperiodlength integer, + reportperiodstart date ); @@ -1970,28 +3197,26 @@ ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; -- --- Name: zzold_members; Type: TABLE; Schema: public; Owner: potlu_user +-- Name: sessions; Type: TABLE; Schema: public; Owner: potlu_user -- -CREATE TABLE public.zzold_members ( - id integer NOT NULL, - surname text, - prename text, - phone text, +CREATE TABLE public.sessions ( + id bigint NOT NULL, + idsession text NOT NULL, id_user bigint, - id_company integer, - job text + user_agent text, + remote_addr text, + created timestamp without time zone DEFAULT now() ); -ALTER TABLE public.zzold_members OWNER TO potlu_user; +ALTER TABLE public.sessions OWNER TO potlu_user; -- --- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user -- -CREATE SEQUENCE public.members_id_seq - AS integer +CREATE SEQUENCE public.sessions_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -1999,36 +3224,324 @@ CREATE SEQUENCE public.members_id_seq CACHE 1; -ALTER TABLE public.members_id_seq OWNER TO potlu_user; +ALTER TABLE public.sessions_id_seq OWNER TO potlu_user; -- --- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user -- -ALTER SEQUENCE public.members_id_seq OWNED BY public.zzold_members.id; +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; -- --- Name: sessions; Type: TABLE; Schema: public; Owner: potlu_user +-- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu_user -- -CREATE TABLE public.sessions ( - id bigint NOT NULL, - idsession text NOT NULL, - id_user bigint, - user_agent text, - remote_addr text, - created timestamp without time zone DEFAULT now() +CREATE TABLE public.usergroups ( + id integer NOT NULL, + usergroup text NOT NULL, + isdefault boolean, + groupname text ); -ALTER TABLE public.sessions OWNER TO potlu_user; +ALTER TABLE public.usergroups OWNER TO potlu_user; -- --- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user -- -CREATE SEQUENCE public.sessions_id_seq +CREATE SEQUENCE public.usergroups_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.usergroups_id_seq OWNER TO potlu_user; + +-- +-- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; + + +-- +-- Name: users; Type: TABLE; Schema: public; Owner: potlu_user +-- + +CREATE TABLE public.users ( + id integer NOT NULL, + userpassword text, + created timestamp without time zone DEFAULT now(), + blocked boolean, + username text, + regcode text, + vcode text, + schemaaccess json, + id_usergroups json, + surname text, + prename text, + phone text, + job text, + id_company integer, + id_usergroup integer +); + + +ALTER TABLE public.users OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- + +CREATE SEQUENCE public.users_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_id_seq OWNER TO potlu_user; + +-- +-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- + +ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; + + +-- +-- Name: vw_companiesdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companiesdata AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata, + companies.validated, + companies.schemata2, + companies.email, + companies.socialtype, + companies.vatvalidated, + companies.reportperiodlength, + companies.reportperiodstart, + companies.reportperiodunit + FROM public.companies; + + +ALTER TABLE public.vw_companiesdata OWNER TO potlu_user; + +-- +-- Name: vw_companieslist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_companieslist AS + SELECT companies.id, + companies.company, + companies.address, + companies.zip, + companies.city, + companies.country, + companies.tradetype, + companies.comregister, + companies.vatnumber, + companies.schemata, + companies.validated, + companies.schemata2, + companies.email, + companies.socialtype, + companies.vatvalidated, + companies.reportperiodlength, + companies.reportperiodstart, + companies.reportperiodunit + FROM public.companies; + + +ALTER TABLE public.vw_companieslist OWNER TO potlu_user; + +-- +-- Name: vw_schemata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_schemata AS + SELECT sct.schema_name AS schemaname, + cp.company + FROM (information_schema.schemata sct + JOIN public.companies cp ON (((sct.schema_name)::text = cp.schemata))) + WHERE (((sct.schema_owner)::text = 'potlu_user'::text) AND ((sct.schema_name)::text <> 'public'::text)); + + +ALTER TABLE public.vw_schemata OWNER TO potlu_user; + +-- +-- Name: vw_staffreportperiodweeks; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_staffreportperiodweeks AS + SELECT staffreportperiodweeks.id, + staffreportperiodweeks.id_staff, + staffreportperiodweeks.id_reportperiod, + staffreportperiodweeks.calyear, + staffreportperiodweeks.calweek, + staffreportperiodweeks.contracthours, + staffreportperiodweeks.workhours, + staffreportperiodweeks.vacancyhours, + staffreportperiodweeks.recuperationhours, + staffreportperiodweeks.diffhours, + staffreportperiodweeks.weekstart, + staffreportperiodweeks.hoursrestbefore, + staffreportperiodweeks.totalhours + FROM portanova.staffreportperiodweeks + ORDER BY staffreportperiodweeks.weekstart; + + +ALTER TABLE public.vw_staffreportperiodweeks OWNER TO potlu_user; + +-- +-- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_usergroupslist AS + SELECT usergroups.id, + usergroups.usergroup, + usergroups.isdefault, + usergroups.groupname + FROM public.usergroups; + + +ALTER TABLE public.vw_usergroupslist OWNER TO potlu_user; + +-- +-- Name: vw_userschemaaccess; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userschemaaccess AS + SELECT users.id, + json_array_elements_text(users.schemaaccess) AS schemaaccess + FROM public.users; + + +ALTER TABLE public.vw_userschemaaccess OWNER TO potlu_user; + +-- +-- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_usersdata AS + SELECT users.id, + users.userpassword, + users.created, + users.blocked, + users.username, + users.regcode, + users.vcode, + users.schemaaccess, + users.id_usergroup, + users.surname, + users.prename, + users.phone, + users.job, + users.id_company + FROM public.users; + + +ALTER TABLE public.vw_usersdata OWNER TO potlu_user; + +-- +-- Name: vw_userslist; Type: VIEW; Schema: public; Owner: potlu_user +-- + +CREATE VIEW public.vw_userslist AS +SELECT + NULL::integer AS id, + NULL::boolean AS blocked, + NULL::text AS username, + NULL::text AS schemaaccess, + NULL::text AS surname, + NULL::text AS prename, + NULL::text AS phone, + NULL::text AS job, + NULL::integer AS id_company, + NULL::text AS company, + NULL::text AS groupname, + NULL::integer AS id_usergroup; + + +ALTER TABLE public.vw_userslist OWNER TO potlu_user; + +-- +-- Name: reportperiod; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +ALTER TABLE test.reportperiod OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.reportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.reportperiod_id_seq OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.reportperiod_id_seq OWNED BY test.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +ALTER TABLE test.sites OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.sites_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -2036,2484 +3549,9793 @@ CREATE SEQUENCE public.sessions_id_seq CACHE 1; -ALTER TABLE public.sessions_id_seq OWNER TO potlu_user; +ALTER TABLE test.sites_id_seq OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.sites_id_seq OWNED BY test.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +ALTER TABLE test.staff OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staff_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staff_id_seq OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staff_id_seq OWNED BY test.staff.id; + + +-- +-- Name: staffcontract; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staffcontract ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric, + id_staffgroup integer +); + + +ALTER TABLE test.staffcontract OWNER TO potlu_user; + +-- +-- Name: staffgroups; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +ALTER TABLE test.staffgroups OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staffgroups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staffgroups_id_seq OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staffgroups_id_seq OWNED BY test.staffgroups.id; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staffperiodbase_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staffperiodbase_id_seq OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staffperiodbase_id_seq OWNED BY test.staffcontract.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +ALTER TABLE test.stafftimetracks OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.stafftimetracks_id_seq OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.stafftimetracks_id_seq OWNED BY test.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +ALTER TABLE test.staffvacancy OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staffvacancy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staffvacancy_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staffvacancy_id_seq OWNED BY test.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +ALTER TABLE test.staffvacancyyear OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staffvacancyyear_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staffvacancyyear_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staffvacancyyear_id_seq OWNED BY test.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +ALTER TABLE test.staffworkplan OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.staffworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.staffworkplan_id_seq OWNED BY test.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM test.reportperiod; + + +ALTER TABLE test.vw_reportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_staffcontractdata; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffcontractdata AS + SELECT staffcontract.id, + staffcontract.id_staff, + staffcontract.startdate, + staffcontract.monthhours, + staffcontract.weekhours, + staffcontract.id_staffgroup + FROM test.staffcontract; + + +ALTER TABLE test.vw_staffcontractdata OWNER TO potlu_user; + +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffcontractlist AS + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.weekhours, + sc.monthhours, + sc.id_staffgroup, + sg.groupname, + sg.groupcolor + FROM (test.staffcontract sc + LEFT JOIN test.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + + +ALTER TABLE test.vw_staffcontractlist OWNER TO potlu_user; + +-- +-- Name: vw_staffdata; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffdata AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate + FROM test.staff; + + +ALTER TABLE test.vw_staffdata OWNER TO potlu_user; + +-- +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffgroupsdata AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test.staffgroups; + + +ALTER TABLE test.vw_staffgroupsdata OWNER TO potlu_user; + +-- +-- Name: vw_staffgroupslist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffgroupslist AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test.staffgroups; + + +ALTER TABLE test.vw_staffgroupslist OWNER TO potlu_user; + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM test.staff; + + +ALTER TABLE test.vw_stafflist OWNER TO potlu_user; + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE test.vw_staffplanned_dayweektotals OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timepause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timepause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timepause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timepause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timepause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timepause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timepause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE test.vw_staffworkplan_weekly OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, + (sp_dwt.calweek)::integer AS calweek, + sp_dwt.calyear, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (test.vw_staffworkplan_weekly sp_dwt + LEFT JOIN test.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +ALTER TABLE test.vw_staffworkplanlist OWNER TO potlu_user; + +-- +-- Name: workplans; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE test.workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM test.workplans; + + +ALTER TABLE test.vw_workplanlist OWNER TO potlu_user; + +-- +-- Name: vw_workplans; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM test.workplans; + + +ALTER TABLE test.vw_workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: test; Owner: potlu_user +-- + +CREATE VIEW test.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM test.workplans; + + +ALTER TABLE test.vw_workplansdata OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.workplans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.workplans_id_seq OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.workplans_id_seq OWNED BY test.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: test; Owner: potlu_user +-- + +CREATE TABLE test.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +ALTER TABLE test.worktypes OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: test; Owner: potlu_user +-- + +CREATE SEQUENCE test.worktypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test.worktypes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: potlu_user +-- + +ALTER SEQUENCE test.worktypes_id_seq OWNED BY test.worktypes.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +ALTER TABLE test2.reportperiod OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.reportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.reportperiod_id_seq OWNER TO potlu_user; + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.reportperiod_id_seq OWNED BY test2.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +ALTER TABLE test2.sites OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.sites_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.sites_id_seq OWNER TO potlu_user; + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.sites_id_seq OWNED BY test2.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +ALTER TABLE test2.staff OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staff_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staff_id_seq OWNER TO potlu_user; + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staff_id_seq OWNED BY test2.staff.id; + + +-- +-- Name: staffcontract; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staffcontract ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric, + id_staffgroup integer +); + + +ALTER TABLE test2.staffcontract OWNER TO potlu_user; + +-- +-- Name: staffgroups; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +ALTER TABLE test2.staffgroups OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staffgroups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staffgroups_id_seq OWNER TO potlu_user; + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staffgroups_id_seq OWNED BY test2.staffgroups.id; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staffperiodbase_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staffperiodbase_id_seq OWNER TO potlu_user; + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staffperiodbase_id_seq OWNED BY test2.staffcontract.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +ALTER TABLE test2.stafftimetracks OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.stafftimetracks_id_seq OWNER TO potlu_user; + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.stafftimetracks_id_seq OWNED BY test2.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +ALTER TABLE test2.staffvacancy OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staffvacancy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staffvacancy_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staffvacancy_id_seq OWNED BY test2.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +ALTER TABLE test2.staffvacancyyear OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staffvacancyyear_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staffvacancyyear_id_seq OWNER TO potlu_user; + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staffvacancyyear_id_seq OWNED BY test2.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +ALTER TABLE test2.staffworkplan OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.staffworkplan_id_seq OWNER TO potlu_user; + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.staffworkplan_id_seq OWNED BY test2.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM test2.reportperiod; + + +ALTER TABLE test2.vw_reportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_staffcontractdata; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffcontractdata AS + SELECT staffcontract.id, + staffcontract.id_staff, + staffcontract.startdate, + staffcontract.monthhours, + staffcontract.weekhours, + staffcontract.id_staffgroup + FROM test2.staffcontract; + + +ALTER TABLE test2.vw_staffcontractdata OWNER TO potlu_user; + +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffcontractlist AS + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.weekhours, + sc.monthhours, + sc.id_staffgroup, + sg.groupname, + sg.groupcolor + FROM (test2.staffcontract sc + LEFT JOIN test2.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + + +ALTER TABLE test2.vw_staffcontractlist OWNER TO potlu_user; + +-- +-- Name: vw_staffdata; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffdata AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate + FROM test2.staff; + + +ALTER TABLE test2.vw_staffdata OWNER TO potlu_user; + +-- +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffgroupsdata AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test2.staffgroups; + + +ALTER TABLE test2.vw_staffgroupsdata OWNER TO potlu_user; + +-- +-- Name: vw_staffgroupslist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffgroupslist AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test2.staffgroups; + + +ALTER TABLE test2.vw_staffgroupslist OWNER TO potlu_user; + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM test2.staff; + + +ALTER TABLE test2.vw_stafflist OWNER TO potlu_user; + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test2.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE test2.vw_staffplanned_dayweektotals OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timepause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timepause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timepause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timepause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timepause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timepause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timepause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test2.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +ALTER TABLE test2.vw_staffworkplan_weekly OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, + (sp_dwt.calweek)::integer AS calweek, + sp_dwt.calyear, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (test2.vw_staffworkplan_weekly sp_dwt + LEFT JOIN test2.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +ALTER TABLE test2.vw_staffworkplanlist OWNER TO potlu_user; + +-- +-- Name: workplans; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE test2.workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM test2.workplans; + + +ALTER TABLE test2.vw_workplanlist OWNER TO potlu_user; + +-- +-- Name: vw_workplans; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM test2.workplans; + + +ALTER TABLE test2.vw_workplans OWNER TO potlu_user; + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: test2; Owner: potlu_user +-- + +CREATE VIEW test2.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM test2.workplans; + + +ALTER TABLE test2.vw_workplansdata OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.workplans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.workplans_id_seq OWNER TO potlu_user; + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.workplans_id_seq OWNED BY test2.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: test2; Owner: potlu_user +-- + +CREATE TABLE test2.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +ALTER TABLE test2.worktypes OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: test2; Owner: potlu_user +-- + +CREATE SEQUENCE test2.worktypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE test2.worktypes_id_seq OWNER TO potlu_user; + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: potlu_user +-- + +ALTER SEQUENCE test2.worktypes_id_seq OWNED BY test2.worktypes.id; + + +-- +-- Name: sites id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.sites ALTER COLUMN id SET DEFAULT nextval('demo.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('demo.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.staffvacancy ALTER COLUMN id SET DEFAULT nextval('demo.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('demo.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: stations id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); + + +-- +-- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); + + +-- +-- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffcontract ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffreportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiod_id_seq'::regclass); + + +-- +-- Name: staffreportperioddays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: staffreportperiodweeks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('portanova.staffweeksums_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: vacancydays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('portanova.vacancydays_id_seq'::regclass); + + +-- +-- Name: vacancytypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); + + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.reportperiod ALTER COLUMN id SET DEFAULT nextval('test.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.sites ALTER COLUMN id SET DEFAULT nextval('test.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staff ALTER COLUMN id SET DEFAULT nextval('test.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staffcontract ALTER COLUMN id SET DEFAULT nextval('test.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staffgroups ALTER COLUMN id SET DEFAULT nextval('test.staffgroups_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('test.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staffvacancy ALTER COLUMN id SET DEFAULT nextval('test.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('test.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.staffworkplan ALTER COLUMN id SET DEFAULT nextval('test.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.workplans ALTER COLUMN id SET DEFAULT nextval('test.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: test; Owner: potlu_user +-- + +ALTER TABLE ONLY test.worktypes ALTER COLUMN id SET DEFAULT nextval('test.worktypes_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.reportperiod ALTER COLUMN id SET DEFAULT nextval('test2.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.sites ALTER COLUMN id SET DEFAULT nextval('test2.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staff ALTER COLUMN id SET DEFAULT nextval('test2.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staffcontract ALTER COLUMN id SET DEFAULT nextval('test2.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staffgroups ALTER COLUMN id SET DEFAULT nextval('test2.staffgroups_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('test2.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staffvacancy ALTER COLUMN id SET DEFAULT nextval('test2.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('test2.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.staffworkplan ALTER COLUMN id SET DEFAULT nextval('test2.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.workplans ALTER COLUMN id SET DEFAULT nextval('test2.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: test2; Owner: potlu_user +-- + +ALTER TABLE ONLY test2.worktypes ALTER COLUMN id SET DEFAULT nextval('test2.worktypes_id_seq'::regclass); + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.staff (id, staffident, surname, prename, pincde, fingerprint, stations, id_user) FROM stdin; +1 \N Saffran Kilian \N \N \N \N +\. + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +\. + + +-- +-- Data for Name: stations; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.stations (id, station, address, plz, city, country, installdate, isactive, hostname) FROM stdin; +\. + + +-- +-- Data for Name: timetrackuser; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- + +COPY demo.timetrackuser (id, id_staff, stamp_in, stamp_out) FROM stdin; +1 1 2019-10-01 08:05:00 2019-10-01 17:07:00 +3 1 2019-10-03 14:01:00 2019-10-03 17:11:00 +4 1 2019-10-03 08:05:00 2019-10-03 12:07:00 +2 1 2019-10-02 08:06:00 2019-10-02 16:05:00 +5 1 2019-10-04 17:05:00 2019-10-05 01:04:00 +\. + + +-- +-- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM stdin; +\. + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) FROM stdin; +27 \N 2019-12-30 2020-02-23 \N +29 \N 2020-02-24 2020-04-19 27 +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) FROM stdin; +132 5430 CAMPANELLA Isamaele commis de cuisine \N \N \N \N \N \N \N \N 1 +133 7600 PREZIOSA MATTEO pizzaiolo 1959-03-26 \N \N \N \N \N \N \N 1 +131 8775 ZAKLAN ZORAN cuisinier 1959-05-25 \N \N \N \N \N \N \N 1 +108 5502 COPPOLA CHRISTIAN chef de salle \N \N \N \N \N \N \N \N 2 +117 5514 DAGGIANO GREGORIO serveur/Barman \N \N \N \N \N \N \N \N 2 +135 5503 CORONEL SILVINO cuisinier 1964-12-18 \N \N \N \N \N \N \N 1 +136 5480 COIMBRA DE SOUSA MARIA commis de cuisine 1969-09-24 \N \N \N \N \N \N \N 1 +111 5140 ARMOCIDA DOMENICO serveur/Barman \N \N \N \N \N \N \N \N 2 +103 1320 BRUCCOLERI SARAH attachée de direction 1984-11-01 \N \N \N \N \N \N \N 4 +104 3200 MULLER RICA secrétaire de direction 1966-12-02 \N \N \N \N \N \N \N 4 +109 5020 ALIF DIDIER serveur 1975-01-26 \N \N \N \N \N \N \N 2 +113 6890 LIEBERTI RICCARDO serveur/Barman 1990-06-19 \N \N \N \N \N \N \N 2 +134 8091 SONMEZ TUNAHAN cuisinier \N \N \N \N \N \N \N \N 1 +114 6600 JOURDAN JOSIANE serveuse 1968-04-14 \N \N \N \N \N \N \N 2 +115 8050 JOSE SILVERIO BARROSO MARIA serveuse 1968-04-05 \N \N \N \N \N \N \N 2 +118 6895 LIMA PERREIRA CATIA INES serveuse 1995-06-06 \N \N \N \N \N \N \N 2 +102 100 PRESTI ADRIANO gérant \N \N \N \N \N \N \N \N 4 +110 5550 DISTANTE FRANCESCO serveur \N \N \N \N \N \N \N \N 2 +112 5230 SIMEN ABDEL MONEM BEN serveur \N \N \N \N \N \N \N \N 2 +116 7052 MASTRINI MARCO serveur/Barman \N \N \N \N \N \N \N \N 2 +145 5270 BIGOS Grzegorz serveur/barman \N \N \N \N \N \N \N \N 2 +144 8070 LOPES DA CRUZ SIMARA plongeuse \N \N \N \N \N \N \N \N 1 +130 5695 ELKAOUI MOURAD cuisinier 1973-02-12 \N \N \N \N \N \N \N 1 +121 5585 DO ROSARIO TIFFANY APPRENTI EN SALLE \N \N \N \N \N \N \N \N 2 +126 5510 D'EUGENIO PIERO chef cuisinier \N \N \N \N \N \N \N \N 1 +127 7750 RICCI Gabriele cuisinier \N \N \N \N \N \N \N \N 1 +128 1172 BUCHICCHIO DONATO chef cuisinier \N \N \N \N \N \N \N \N 1 +119 7178 MORHTASSI KARIM serveur/Barman \N \N \N \N \N \N \N \N 2 +120 7490 PERREIRA ANTONIO serveur/Barman \N \N \N \N \N \N \N \N 2 +138 7965 SAVALLI Delia pâtissier \N \N \N \N \N \N \N \N 1 +124 7941 SABBA LEONARD musicien 1954-08-07 \N \N \N \N \N \N \N 2 +105 3600 PINTO DA COSTA GRACINDA Hôtesse d'accueil/serveuse 1974-04-02 \N \N \N \N \N \N \N 2 +106 2701 WEILER KIEFFER LILIANNE hôtesse d'accueil 1958-04-21 \N \N \N \N \N \N \N 2 +122 7595 PUGLIESE GIUSEPPE serveur/Barman 1994-02-24 \N \N \N \N \N \N \N 2 +107 7950 SANTORO DARIO Hôtesse d'accueil/serveuse \N \N \N \N \N \N \N \N 2 +123 8155 TAVARES LOPES JOAO serveur/Barman \N \N \N \N \N \N \N \N 2 +146 5506 COSTA Giovanni RESPONSABLE DU BAR \N \N \N \N \N \N \N \N 2 +147 5697 EMBAREK BEN MOHAMED Francoise Responsable experimente \N \N \N \N \N \N \N \N 2 +148 6770 KARATHANASIS Evangelos serveur/barman \N \N \N \N \N \N \N \N 2 +149 7130 MESSINA Giovanni serveur/barman \N \N \N \N \N \N \N \N 2 +150 6876 LAMENDOUR JULIEN serveur/barman 1998-01-27 \N \N \N \N \N \N \N 2 +125 5280 BULAKU ENVER concierge/technicien 1971-02-08 \N \N \N \N \N \N \N 4 +151 AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4 +129 5250 BOUALI AMAR aide-pâtissier/ cuisinier 1980-02-20 \N \N \N \N \N \N \N 1 +139 5540 DELL'AVERSANA Shree cuisinier \N \N \N \N \N \N \N \N 1 +140 7099 MARZOUK Hassan pizzaiolo \N \N \N \N \N \N \N \N 1 +142 5600 DOS SANTOS MORENO Alcinda plongeuse 1960-12-26 \N \N \N \N \N \N \N 1 +143 5515 DA LUZ CANDIDA plongeuse \N \N \N \N \N \N \N \N 1 +141 \N IBRAHIMI Blade APPRENTI EN CUISINE \N \N \N \N \N \N \N \N 1 +137 7951 SANTORO DAVIDE Cuisinier \N \N \N \N \N \N \N \N 1 +\. + + +-- +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) FROM stdin; +69 130 2005-01-08 1 6 \N 6 40:00:00 +90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 +71 133 2013-01-07 1 6 \N 6 40:00:00 +85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 +70 131 1995-07-01 1 6 \N 6 20:00:00 +77 108 2020-01-06 2 6 \N 6 40:00:00 +108 129 2019-07-15 1 6 \N 6 40:00:00 +82 117 2020-05-01 2 6 \N 1 40:00:00 +72 135 2006-10-23 1 6 \N 6 40:00:00 +73 136 1992-03-15 1 6 \N 6 40:00:00 +79 111 2020-01-01 2 6 \N 6 40:00:00 +87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 +88 127 2020-01-01 1 6 \N 6 40:00:00 +89 128 2020-01-01 1 6 \N 6 40:00:00 +56 103 2014-03-01 4 6 \N 1 40:00:00 +57 104 2015-11-15 4 6 \N 1 30:00:00 +60 109 2005-04-19 2 6 \N 1 40:00:00 +61 113 2016-05-19 2 6 \N 1 40:00:00 +91 134 2020-01-01 1 6 \N 6 40:00:00 +62 114 2007-08-14 2 6 \N 1 40:00:00 +63 115 2013-05-01 2 6 \N 1 40:00:00 +64 118 2018-02-12 2 6 \N 1 40:00:00 +75 102 2020-01-01 4 6 \N 1 40:00:00 +78 110 2020-01-01 2 6 \N 1 40:00:00 +80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 +81 116 2020-01-01 2 6 2019-02-28 1 40:00:00 +83 119 2020-01-01 2 6 \N 1 40:00:00 +84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 +93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 +66 124 2016-04-01 2 6 2019-05-31 1 12:30:00 +99 145 2020-01-01 2 6 \N 6 40:00:00 +58 105 2011-10-01 2 6 \N 6 40:00:00 +59 106 2015-07-01 2 6 \N 1 12:30:00 +65 122 2015-10-15 2 6 \N 1 40:00:00 +76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 +86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 +100 146 2020-01-01 2 6 \N 1 40:00:00 +101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 +102 148 2020-01-01 2 6 \N 1 40:00:00 +103 149 2020-01-01 2 6 \N 1 40:00:00 +104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 +67 125 2003-10-01 4 6 \N 1 20:00:00 +107 151 2020-02-01 4 6 \N 6 40:00:00 +105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 +94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 +95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 +74 142 2014-04-15 1 6 \N 6 40:00:00 +97 143 2020-01-01 1 6 \N 6 40:00:00 +98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 +96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 +92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 +\. + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) FROM stdin; +1 Cuisine \N ["2","4"] \N +2 Service \N ["2","4"] \N +4 Administration \N ["2","4"] t +\. + + +-- +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; +1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +992 27 146 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N +1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +993 27 132 88:00:00 93:20:00 88:00:00 00:00:00 00:00:00 -05:20:00 \N +994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +996 27 112 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N +998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +999 27 127 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1000 27 149 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1001 27 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1002 27 121 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1003 27 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1004 27 119 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1006 27 147 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N +1009 27 151 120:00:00 133:20:00 120:00:00 00:00:00 00:00:00 -13:20:00 \N +1010 27 138 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1012 27 134 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1013 27 144 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1014 27 102 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1018 27 111 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1019 27 128 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N +1023 27 139 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1024 27 141 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N +1027 27 110 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1028 27 145 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1029 27 148 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1032 27 143 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1094 29 144 216:00:00 213:20:00 216:00:00 00:00:00 00:00:00 02:40:00 \N +1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N +1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +\. + + +-- +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) FROM stdin; +988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012469 125 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012470 125 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012471 125 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012476 125 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012477 125 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012478 125 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008198 103 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012448 125 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012449 125 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012450 125 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012455 125 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012456 125 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012457 125 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012462 125 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012463 125 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012464 125 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012483 125 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012484 125 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012485 125 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012490 125 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012491 125 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012492 125 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012497 125 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012498 125 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012499 125 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044731 111 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +\. + + +-- +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) FROM stdin; +5512 146 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5520 132 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5522 132 27 2020 3 20:00:00 24:00:00 00:00:00 00:00:00 00:00:00 04:00:00 2020-01-13 \N 24:00:00 3 3 \N +6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5539 112 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5562 127 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5570 149 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +5578 103 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5586 121 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5594 125 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N +5595 125 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N +5596 125 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N +5597 125 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N +5598 125 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N +5599 125 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N +6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +5600 125 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N +6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5601 125 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N +5602 119 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5618 147 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N +5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N +5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N +5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N +5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N +5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N +5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N +6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N +6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N +6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N +6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N +6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N +6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N +6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N +6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N +5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N +5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 7 6 \N +5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 7 6 \N +5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 7 6 \N +5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 7 6 \N +5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 7 6 \N +5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 7 6 \N +5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 7 6 \N +5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 7 6 \N +5642 151 27 2020 5 13:20:00 00:00:00 00:00:00 00:00:00 00:00:00 -13:20:00 2020-01-27 \N 00:00:00 2 2 \N +6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5646 138 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N +6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N +5662 134 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N +5670 144 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5678 102 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N +6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N +6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N +6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N +6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N +5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5710 111 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 7 6 \N +6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 7 6 \N +6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 7 6 \N +6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 7 6 \N +6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 7 6 \N +5718 128 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 7 6 \N +6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 7 6 \N +6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 7 6 \N +5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5742 140 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5746 140 27 2020 5 33:20:00 40:00:00 00:00:00 00:00:00 00:00:00 06:40:00 2020-01-27 \N 40:00:00 5 5 \N +5747 139 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5755 141 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 7 6 \N +5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 7 6 \N +5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 7 6 \N +5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 7 6 \N +5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 7 6 \N +5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 7 6 \N +5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 7 6 \N +5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 7 6 \N +5779 110 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5787 145 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5795 148 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5819 143 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6307 144 29 2020 14 13:20:00 16:00:00 00:00:00 00:00:00 00:00:00 02:40:00 2020-03-30 \N 16:00:00 2 2 \N +6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 7 6 \N +6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 7 6 \N +6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 7 6 \N +6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 7 6 \N +6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 7 6 \N +6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 7 6 \N +6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 7 6 \N +6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 7 6 \N +6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffvacancy (id, id_staff, daydate, id_vacancytype, vacancyhours) FROM stdin; +\. + + +-- +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.vacancydays (id, daydate, vacancyname) FROM stdin; +\. + + +-- +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) FROM stdin; +5 extraordinaire t t #e26b0a +7 training t \N #b7dee8 +4 jour de repos f t #0070c0 +3 comp. 44h f \N #86a0af +6 comp. dim. trav. f \N #aeb2b5 +2 maladie t t #e3000f +1 normal t t #1b92bb +\. + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; +6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +\. + + +-- +-- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; +18 135 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +56 141 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +57 142 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +58 138 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +2 141 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +3 142 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +19 133 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +20 141 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +21 142 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +22 127 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +23 136 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +24 138 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +25 139 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +26 134 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +27 131 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +28 129 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +29 128 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +30 130 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +31 143 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +33 103 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +35 125 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +32 102 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +34 104 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +36 122 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +38 117 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +37 121 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +39 115 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +40 114 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +41 119 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +42 113 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +43 146 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +44 112 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +45 108 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +46 109 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +47 147 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +48 105 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +49 118 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +59 131 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +60 135 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +61 132 9 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +62 133 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +63 127 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +64 136 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +65 140 9 184:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +66 139 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +67 134 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +68 129 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +69 144 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +70 128 9 24:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +71 130 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +72 143 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +4 138 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +5 131 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +6 135 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +7 133 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +8 127 10 320:00:00 00:00:00 00:00:00 08:00:00 00:00:00 00:00:00 \N +9 136 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +10 139 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +11 134 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +12 129 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +13 144 10 218:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +14 128 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +15 130 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +16 143 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +102 151 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +50 106 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +51 111 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +52 110 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +53 145 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +54 148 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +55 149 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +\. + + +-- +-- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.apps (id, app, description, name, id_usergroup, icon, sort, menutype, id_usergroups) FROM stdin; +10 sites Sites Sites \N cube.svg 6 schema \N +8 timetrackers Pointeuses Pointeuses \N cube.svg 7 schema \N +5 users Utilisateurs utilisateurs 2 group.svg 11 global ["2","3","4","5"] +6 companies Entreprise entreprise 2 cube.svg 10 global ["2","3"] +7 staff Salairiés Salariés 3 group.svg 4 schema ["2","3"] +11 workplans Plans de travail POT (modèles) 3 calendar.svg 8 schema ["2","3","4"] +4 profile Profil Profil 5 user.svg 9 global ["2","3","4","5"] +9 periods Planning Période(s) de référence 3 poticon.svg 5 schema ["2","3","4"] +\. + + +-- +-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated, reportperiodunit, reportperiodlength, reportperiodstart) FROM stdin; +25 test 4, rue Principale 3770 Tétange Luxemburg \N \N \N test \N \N kilian@saffran.lu s.à r.l. \N \N \N \N +26 TEST2 8b, rue du Moulin 6914 Roodt-sur-Syre Luxemburg \N \N \N test2 \N \N support@dks.lu \N \N \N \N \N +1 Portanova rue de la faïencerie \N Luxembourg Luxemburg \N \N \N portanova \N \N support@dks.lu s.à r.l. \N week 8 2019-12-30 +\. + + +-- +-- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.maillayouts (id, layoutname, mailtemplate) FROM stdin; +1 potbasic \r\n \r\n \r\n \r\n \r\n \r\n
\r\n POT - Plan d'organisation de travail\r\n
\r\n
\r\n %%BODYCONTENT%%\r\n
\r\n
\r\n
\r\n \r\n +\. + + +-- +-- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.mailtemplates (id, templatename, emailtext, emaildatasql, mailfrom, mailsubject, id_maillayout) FROM stdin; +1 user_registration Bonjour %%prename%% %%surname%%,
\n
\nMerci pour votre création de compte sur pot.lu,\n

\nvotre login: %%username%%
\nvotre mot de passe: %%password%%\n
\nMeilleurs salutations,
\n
\nPOT Support Team select prename,surname,username from users where id='%%id%%'; support@dks.lu Confirmation requis pour votre création de compte sur pot.lu 1 +2 user_forgotpasswd Bonjour %%prename%% %%surname%%,

\n\nvous avez demandé un nouveau mot de passe via pot.lu!
\nnouveau mot de passe: %%newpassword%%

\n
\nMeilleurs salutations,
\n
\nPOT Support Team\n\n\n\n select prename,surname from users where id='%%id%%'; support@dks.lu Nouveau mot de passe pour le site pot.lu 1 +3 user_expiration_notice Bonjour %%prename%% %%surname%%,
\n
\nVotre souscription au site pot.lu expire bientôt,\n

\nn'oublié pas à la prolonger!\nProlonger maintenant\n
\nMeilleurs salutations,
\n
\npot.lu Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Notice d'expiration de votre souscription sur pot.lu 1 +4 user_invoice_paypal Bonjour %%prename%% %%surname%%,
\n
\nEn annexe vous trouvez la facture pour votre souscription au site pot.lu,\n
\nVous avez Payé déjà via PayPal!\n\nMeilleurs salutations,
\n
\npot.lu Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Info facture pour votre souscription sur pot.lu 1 +5 user_invoice Bonjour %%prename%% %%surname%%,
\n
\nEn annexe vous trouvez la facture pour votre souscription au site pot.lu,\n
\n\nMeilleurs salutations,
\n
\nPOT Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Facture concernant votre souscription sur pot.lu 1 +6 user_verification Bonjour %%prename%% %%surname%%,
\r\n
\r\nLe code pour valider votre e-mail est:\r\n
\r\n%%vcode%%
\r\n
\r\nentrez le code ici: %%siteurl%%/backoffice/validationcode.html\r\n
\r\nMéilleurs Salutations,
\r\n
\r\npot.lu Support Team select prename,surname,username from users where id='%%id%%'; support@dks.lu Validation de votre Email pour le site pot.lu 1 +7 user_newpassword Bonjour %%prename%% %%surname%%,
\r\n
\r\nNous avons crées / modifé votre compte sur le site pot.lu;
\r\n
\r\nVotre Login: %%username%%
\r\nMot de passe: %%newpassword%%

\r\n
\r\nméilleurs Salutations,
\r\n
\r\npot.lu Support-Team
\r\n select prename,surname,username from users where id='%%id%%'; support@dks.lu coordonnées d'accès de votre compte sur pot.lu 1 +\. + + +-- +-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.sessions (id, idsession, id_user, user_agent, remote_addr, created) FROM stdin; +228 yQVWb3gmfQZbXhdgiexW1O2suUpzBlL02xM3qTgw 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 2001:7e8:cc73:de00:a812:ebc7:72cb:2146 2020-01-09 06:41:48.639525 +229 OE2TqV8VRjYZmkSXr7qjQW4TVR8zvjJ9OCT4nRP5 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 ::1 2020-01-09 10:37:54.604655 +111 uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:213c:73ba:ffa7:842b 2019-12-05 19:16:43.969105 +112 mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:7946:65e2:f587:8b74 2019-12-06 07:02:23.094765 +113 HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-09 11:33:13.202044 +114 aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362 ::1 2019-12-10 15:55:53.526432 +175 NjxbJc50MGk8kV9dH2G33mhWV5e4PTns3KuCMptp 1 Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Mobile Safari/537.36 ::1 2020-01-02 09:36:12.19675 +176 d62Z9Se8i1QM2Zhx6JZz8TWz9eXvIlXMiPBhyGgG 1 Mozilla/5.0 (iPad; CPU OS 11_0 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) Version/11.0 Mobile/15A5341f Safari/604.1 ::1 2020-01-02 09:36:47.868479 +232 EPjQ6DLhLgmxsW0euSnHhxOmC2iMrKlWpvCmYetA 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 192.168.178.23 2020-01-10 08:38:40.58899 +178 yC6li3gqsuF9nPacybvBUPwzz3SoIyx71ui9nppF 1 Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1 ::1 2020-01-02 09:49:11.956938 +122 Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:d970:312a:d5d:db83 2019-12-12 07:06:51.913155 +124 NUTU0TkWd81oxH4ig52WCA3HzccA3bmHW5sMPCyT 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-15 11:44:06.485589 +198 dC237zuzY7HYOGvbFem5LeVuQ3XFRxSU0LOXa8nZ 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 2001:7e8:cc73:de00:24c6:9f1e:3054:64dd 2020-01-08 08:36:54.781554 +93 5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn 1 Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36 ::1 2019-12-04 14:58:48.993651 +258 s7C63JpbiZV34B1obie1a6JUnUaSJXl1VNYPndQv 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36 ::1 2020-01-16 09:02:49.520835 +98 9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-05 07:34:07.997426 +99 v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 192.168.178.23 2019-12-05 07:35:01.756219 +160 pMEnznbOdbCeLbtKUwxgVbn2PNVzrF0HhvVHIWmL 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-20 12:48:16.464228 +162 RRiSGkElRtLTCs3lkdYpQNZDnxKJ2wOJdXrJ7WVO 1 192.168.178.23 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2019-12-24 10:59:50.644045 +163 BlvRAYUeX78wr2OhPvWU5TrsNAmsooAQzWy0Ki4x 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 2001:7e8:cc73:de00:f4f8:d2a7:1c8:2664 2019-12-24 11:00:44.808971 +278 R65RJQKl3zSYyByNGuQOk3U0xYgWYKdGG9nfPXrI 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36 ::1 2020-02-03 17:19:26.880576 +\. + + +-- +-- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.usergroups (id, usergroup, isdefault, groupname) FROM stdin; +1 superadmin \N SuperAdmin +2 admin \N Admin +5 user t Utilisateur +3 manager \N Gérant +4 teamleader \N Responsable +\. + + +-- +-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- + +COPY public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company, id_usergroup) FROM stdin; +1 0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec 2019-10-10 17:12:11.934747 \N kilian.saffran@gmail.com \N 6tgfkew ["test","portanova"] ["2","5","3","4"] Saffran Kilian +352691504574 Gérant 1 2 +2 f7252754a4cb7391d966316351b3501bce81fee9bc0b71807ddf61281a27821e 2019-12-20 11:03:08.757357 \N kilian@saffran.lu \N \N ["portanova"] ["5"] Saffran Kilian 691504574 \N 1 5 +4 ad3d14273d47ed24f6d62e3f8c64032e946d9e9d5965364a81e15d12a69cf2ce 2019-12-29 16:53:19.68549 \N ksaffran@dks.lu \N \N ["portanova"] ["3","5"] Saffran Kilian \N \N 1 3 +\. + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.reportperiod (id, periodname, startdate, enddate) FROM stdin; +1 Periode X 2020-01-06 2019-12-29 +\. + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; +\. + + +-- +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) FROM stdin; +\. + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staffgroups (id, groupname, groupcolor) FROM stdin; +\. + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +\. + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; +\. + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; +\. + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: test; Owner: potlu_user +-- + +COPY test.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; +\. + + +-- +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.reportperiod (id, periodname, startdate, enddate) FROM stdin; +\. + + +-- +-- Data for Name: sites; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +\. + + +-- +-- Data for Name: staff; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; +\. + + +-- +-- Data for Name: staffcontract; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) FROM stdin; +\. + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staffgroups (id, groupname, groupcolor) FROM stdin; +\. + + +-- +-- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancy; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +\. + + +-- +-- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +\. + + +-- +-- Data for Name: staffworkplan; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; +\. + + +-- +-- Data for Name: workplans; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; +\. + + +-- +-- Data for Name: worktypes; Type: TABLE DATA; Schema: test2; Owner: potlu_user +-- + +COPY test2.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; +\. + + +-- +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.sites_id_seq', 1, false); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.staff_id_seq', 1, true); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.stafftimetracks_id_seq', 1, false); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- + +SELECT pg_catalog.setval('demo.staffvacancy_id_seq', 1, false); + -- --- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user -- -ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; +SELECT pg_catalog.setval('demo.staffvacancyyear_id_seq', 1, false); -- --- Name: usergroups; Type: TABLE; Schema: public; Owner: potlu_user +-- Name: stations_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user -- -CREATE TABLE public.usergroups ( - id integer NOT NULL, - usergroup text NOT NULL, - isdefault boolean, - groupname text -); - +SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); -ALTER TABLE public.usergroups OWNER TO potlu_user; -- --- Name: usergroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- Name: timetrackuser_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user -- -CREATE SEQUENCE public.usergroups_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - +SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); -ALTER TABLE public.usergroups_id_seq OWNER TO potlu_user; -- --- Name: usergroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; +SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); -- --- Name: zzold_useringroups; Type: TABLE; Schema: public; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE TABLE public.zzold_useringroups ( - id integer NOT NULL, - id_user bigint, - id_group bigint -); - +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); -ALTER TABLE public.zzold_useringroups OWNER TO potlu_user; -- --- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE public.useringroups_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - +SELECT pg_catalog.setval('portanova.staff_id_seq', 151, true); -ALTER TABLE public.useringroups_id_seq OWNER TO potlu_user; -- --- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.zzold_useringroups.id; +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- --- Name: users; Type: TABLE; Schema: public; Owner: potlu_user +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE TABLE public.users ( - id integer NOT NULL, - userpassword text, - created timestamp without time zone DEFAULT now(), - blocked boolean, - username text, - regcode text, - vcode text, - schemaaccess json, - id_usergroups json, - surname text, - prename text, - phone text, - job text, - id_company integer -); - +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); -ALTER TABLE public.users OWNER TO potlu_user; -- --- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: potlu_user +-- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE public.users_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); -ALTER TABLE public.users_id_seq OWNER TO potlu_user; -- --- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: potlu_user +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id; +SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); -- --- Name: vw_companiesdata; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_companiesdata AS - SELECT companies.id, - companies.company, - companies.address, - companies.zip, - companies.city, - companies.country, - companies.tradetype, - companies.comregister, - companies.vatnumber, - companies.schemata, - companies.validated, - companies.schemata2, - companies.email, - companies.socialtype, - companies.vatvalidated - FROM public.companies; - +SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -ALTER TABLE public.vw_companiesdata OWNER TO potlu_user; -- --- Name: vw_companieslist; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_companieslist AS - SELECT companies.id, - companies.company, - companies.address, - companies.zip, - companies.city, - companies.country, - companies.tradetype, - companies.comregister, - companies.vatnumber, - companies.schemata, - companies.validated, - companies.schemata2, - companies.email, - companies.socialtype, - companies.vatvalidated - FROM public.companies; - +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); -ALTER TABLE public.vw_companieslist OWNER TO potlu_user; -- --- Name: vw_schemata; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_schemata AS - SELECT schemata.schema_name AS schemaname - FROM information_schema.schemata - WHERE ((schemata.schema_owner)::text = 'potlu_user'::text); - +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); -ALTER TABLE public.vw_schemata OWNER TO potlu_user; -- --- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_usergroupslist AS - SELECT usergroups.id, - usergroups.usergroup, - usergroups.isdefault, - usergroups.groupname - FROM public.usergroups; - +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); -ALTER TABLE public.vw_usergroupslist OWNER TO potlu_user; -- --- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_usersdata AS - SELECT users.id, - users.userpassword, - users.created, - users.blocked, - users.username, - users.regcode, - users.vcode, - users.schemaaccess, - users.id_usergroups, - users.surname, - users.prename, - users.phone, - users.job, - users.id_company - FROM public.users; - +SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); -ALTER TABLE public.vw_usersdata OWNER TO potlu_user; -- --- Name: vw_userslist; Type: VIEW; Schema: public; Owner: potlu_user +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -CREATE VIEW public.vw_userslist AS -SELECT - NULL::integer AS id, - NULL::boolean AS blocked, - NULL::text AS username, - NULL::text AS schemaaccess, - NULL::text AS surname, - NULL::text AS prename, - NULL::text AS phone, - NULL::text AS job, - NULL::integer AS id_company, - NULL::text AS company, - NULL::text AS usergroups; - +SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); -ALTER TABLE public.vw_userslist OWNER TO potlu_user; -- --- Name: staff id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); +SELECT pg_catalog.setval('public.apps_id_seq', 11, true); -- --- Name: stations id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); +SELECT pg_catalog.setval('public.companies_id_seq', 26, true); -- --- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: potlu_user +-- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); +SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, true); -- --- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); +SELECT pg_catalog.setval('public.mailtemplates_id_seq', 7, true); -- --- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); +SELECT pg_catalog.setval('public.sessions_id_seq', 278, true); -- --- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); +SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); -- --- Name: staffcontract id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffcontract ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); +SELECT pg_catalog.setval('public.users_id_seq', 4, true); -- --- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); +SELECT pg_catalog.setval('test.reportperiod_id_seq', 1, true); -- --- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); +SELECT pg_catalog.setval('test.sites_id_seq', 1, false); -- --- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); +SELECT pg_catalog.setval('test.staff_id_seq', 1, false); -- --- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); +SELECT pg_catalog.setval('test.staffgroups_id_seq', 1, false); -- --- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); +SELECT pg_catalog.setval('test.staffperiodbase_id_seq', 1, false); -- --- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); +SELECT pg_catalog.setval('test.stafftimetracks_id_seq', 1, false); -- --- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +SELECT pg_catalog.setval('test.staffvacancy_id_seq', 1, false); -- --- Name: apps id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); +SELECT pg_catalog.setval('test.staffvacancyyear_id_seq', 1, false); -- --- Name: companies id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); +SELECT pg_catalog.setval('test.staffworkplan_id_seq', 1, false); -- --- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); +SELECT pg_catalog.setval('test.workplans_id_seq', 1, false); -- --- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); +SELECT pg_catalog.setval('test.worktypes_id_seq', 1, false); -- --- Name: sessions id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); +SELECT pg_catalog.setval('test2.reportperiod_id_seq', 1, false); -- --- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: sites_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); +SELECT pg_catalog.setval('test2.sites_id_seq', 1, false); -- --- Name: users id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: staff_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); +SELECT pg_catalog.setval('test2.staff_id_seq', 1, false); -- --- Name: zzold_members id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); +SELECT pg_catalog.setval('test2.staffgroups_id_seq', 1, false); -- --- Name: zzold_useringroups id; Type: DEFAULT; Schema: public; Owner: potlu_user +-- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); +SELECT pg_catalog.setval('test2.staffperiodbase_id_seq', 1, false); -- --- Data for Name: staff; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY demo.staff (id, staffident, surname, prename, pincde, fingerprint, stations, id_user) FROM stdin; -1 \N Saffran Kilian \N \N \N \N -\. +SELECT pg_catalog.setval('test2.stafftimetracks_id_seq', 1, false); -- --- Data for Name: stations; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY demo.stations (id, station, address, plz, city, country, installdate, isactive, hostname) FROM stdin; -\. +SELECT pg_catalog.setval('test2.staffvacancy_id_seq', 1, false); -- --- Data for Name: timetrackuser; Type: TABLE DATA; Schema: demo; Owner: potlu_user +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY demo.timetrackuser (id, id_staff, stamp_in, stamp_out) FROM stdin; -1 1 2019-10-01 08:05:00 2019-10-01 17:07:00 -3 1 2019-10-03 14:01:00 2019-10-03 17:11:00 -4 1 2019-10-03 08:05:00 2019-10-03 12:07:00 -2 1 2019-10-02 08:06:00 2019-10-02 16:05:00 -5 1 2019-10-04 17:05:00 2019-10-05 01:04:00 -\. +SELECT pg_catalog.setval('test2.staffvacancyyear_id_seq', 1, false); -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY portanova.reportperiod (id, periodname, startdate, enddate) FROM stdin; -1 Période 1 2020 2019-12-30 2020-02-23 -5 Periode X 2019-11-25 2020-04-05 -6 TEST 2019-11-25 2020-01-05 -\. +SELECT pg_catalog.setval('test2.staffworkplan_id_seq', 1, false); -- --- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY portanova.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; -\. +SELECT pg_catalog.setval('test2.workplans_id_seq', 1, false); -- --- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: test2; Owner: potlu_user -- -COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; -1 A100 NISTRI ANGELA serveuse 1987-03-27 2015-06-22 \N -4 A101 JOURDAN JOSIAN serveuse 1981-01-29 2015-04-01 \N -5 A102 ARENGA TERESA serveuse 1981-06-15 2015-03-10 \N -6 A103 BARROSO MARIA serveuse \N 2000-01-01 \N -7 A104 STIPA CRISTIAN serveur 1975-08-08 2015-11-09 \N -15 5558 DEDJA CLAIDIO Barman 1994-02-24 2014-11-15 \N -16 7595 PUGLIESE GIUSEPPE serveur/Barman 1995-11-05 2015-10-08 \N -8 A105 LIBERTI RICCARDO serveur 1990-06-19 2016-02-13 \N -11 A106 ARMOCIDA Domenico serveur \N 2000-01-01 \N -12 A107 MORTASSI KARIM serveur \N 2000-01-01 \N -13 A108 IRIA FABIO serveur \N 2000-01-01 \N -14 A109 SERGIO SERGIO serveur \N 2000-01-01 \N -18 A200 \N \N Barman \N 2000-01-01 \N -20 A110 QUATTRONE DEMETRIO Cuisinier 1950-06-27 2015-12-01 \N -24 A111 RAMOS DA SILVA JOHNY cuisinier 1966-08-25 2005-05-01 \N -25 A112 VICINI DAVIDE \N \N 2000-01-01 \N -26 A113 LAMA ANGELO commis de cuisine 1992-11-20 2008-07-10 \N -30 A114 ILIC JULIEN apprenti 1995-04-22 2000-01-01 \N -31 A115 SOMNEZ TUNAHAN \N \N 2000-01-01 \N -36 A117 DA LUZ CANDIDA plongeus \N 2000-01-01 \N -37 A118 CRISCIONE EMANUELE resp. de réception 1981-09-18 2000-01-01 \N -41 A119 SONMEZ TUNAHAN apprenti 1998-06-15 2000-01-01 \N -42 A120 IRIA SILVA FABIO apprenti 1988-06-29 2000-01-01 \N -43 A121 MULLER RICA secrétaire de direction 1966-12-02 2000-01-01 \N -44 A122 BRUCCOLERI SARAH attachée de direction 1984-11-01 2000-01-01 \N -45 100 PRESTI ADRIANO gérant \N 2000-01-01 \N -2 5020 MATIAS RAPHAEL serveur 1975-01-26 2005-04-19 \N -3 6600 ALIF DIDIER serveur 1968-04-14 2007-08-14 \N -9 5502 COPPOLA CHRISTIAN serveur 1990-11-25 2016-01-18 \N -21 8775 ZAKLAN ZORAN cuisinier 1959-05-25 2005-01-08 \N -22 5695 ELKAOUI MOURAD cuisinier 1973-02-12 2014-04-15 \N -23 5503 CORONEL SILVINO ROSA aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N -27 7120 MELO IVO TIAGO aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N -28 7600 PREZZIOSA MATTEO pizzaiolo 1959-03-26 2012-10-03 \N -29 5250 BOUALI AMAR aide-pâtissier/commis de cuisine 1980-02-20 2015-06-01 \N -32 5480 COIMBRA ABRANTES MARIA commis de cuisine 1969-09-24 2006-10-23 \N -33 5540 DE BRITO Djela commis de cuisine 1975-01-15 1995-07-01 \N -34 7591 PEREIRA GOMES ANTONIA plongeuse 1987-04-29 1992-03-15 \N -35 5600 DOS SANTOS Alcinda plongeuse 1960-12-26 2011-07-05 \N -38 7980 SCHMITGEN TANUCCIA Hôtesse d'accueil/serveuse 1964-01-20 2010-10-04 \N -39 2701 KIEFFER-WEILER LILIANNE hôtesse d'accueil 1958-04-21 2015-07-01 \N -40 8725 YAKOBSON YULIYA hôtesse d'accueil 1974-04-02 2011-10-01 \N -10 8501 TAVERNA Greta serveuse \N 2000-01-01 \N -17 5280 BULAKU ENVER concierge/technicien 1971-02-08 2000-01-01 \N -19 1172 BUCHICCHIO DONATO ANTONIO chef cuisinier 1970-10-23 2000-01-01 \N -\. +SELECT pg_catalog.setval('test2.worktypes_id_seq', 1, false); -- --- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) FROM stdin; -39 39 2015-07-01 64.8750000000000000 15 \N -40 40 2011-10-01 86.5000000000000000 20 \N -11 11 2000-01-01 129.7500000000000000 30 \N -43 43 2000-01-01 129.7500000000000000 30 \N -6 6 2000-01-01 173.0000000000000000 40 \N -10 10 2000-01-01 173.0000000000000000 40 \N -12 12 2000-01-01 173.0000000000000000 40 \N -13 13 2000-01-01 173.0000000000000000 40 \N -14 14 2000-01-01 173.0000000000000000 40 \N -17 17 2000-01-01 173.0000000000000000 40 \N -19 19 2000-01-01 173.0000000000000000 40 \N -25 25 2000-01-01 173.0000000000000000 40 \N -30 30 2000-01-01 173.0000000000000000 40 \N -31 31 2000-01-01 173.0000000000000000 40 \N -36 36 2000-01-01 173.0000000000000000 40 \N -37 37 2000-01-01 173.0000000000000000 40 \N -41 41 2000-01-01 173.0000000000000000 40 \N -42 42 2000-01-01 173.0000000000000000 40 \N -44 44 2000-01-01 173.0000000000000000 40 \N -45 45 2000-01-01 173.0000000000000000 40 \N -1 1 2015-06-22 173.0000000000000000 40 \N -2 2 2005-04-19 173.0000000000000000 40 \N -3 3 2007-08-14 173.0000000000000000 40 \N -4 4 2015-04-01 173.0000000000000000 40 \N -5 5 2015-03-10 173.0000000000000000 40 \N -7 7 2015-11-09 173.0000000000000000 40 \N -8 8 2016-02-13 173.0000000000000000 40 \N -9 9 2016-01-18 173.0000000000000000 40 \N -15 15 2014-11-15 173.0000000000000000 40 \N -16 16 2015-10-08 173.0000000000000000 40 \N -18 18 2016-05-30 173.0000000000000000 40 \N -20 20 2015-12-01 173.0000000000000000 40 \N -21 21 2005-01-08 173.0000000000000000 40 \N -22 22 2014-04-15 173.0000000000000000 40 \N -23 23 2013-01-07 173.0000000000000000 40 \N -24 24 2005-05-01 173.0000000000000000 40 \N -26 26 2008-07-10 173.0000000000000000 40 \N -27 27 2013-01-07 173.0000000000000000 40 \N -28 28 2012-10-03 173.0000000000000000 40 \N -29 29 2015-06-01 173.0000000000000000 40 \N -32 32 2006-10-23 173.0000000000000000 40 \N -33 33 1995-07-01 173.0000000000000000 40 \N -34 34 1992-03-15 173.0000000000000000 40 \N -35 35 2011-07-05 173.0000000000000000 40 \N -38 38 2010-10-04 173.0000000000000000 40 \N -\. +ALTER TABLE ONLY demo.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); -- --- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.staffgroups (id, groupname, groupcolor) FROM stdin; -1 cuisine \N -2 service \N -3 caisse \N -\. +ALTER TABLE ONLY demo.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; -\. +ALTER TABLE ONLY demo.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); -- --- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; -\. +ALTER TABLE ONLY demo.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; -\. +ALTER TABLE ONLY demo.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); -- --- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; -3118 3 2019-12-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -1817 34 2017-07-07 \N \N \N \N \N \N \N -1847 37 2017-07-15 \N \N \N \N \N \N \N -3119 3 2019-12-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3120 3 2020-01-01 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3121 3 2020-01-02 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3122 3 2020-01-03 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -2405 20 2017-06-17 \N \N \N \N \N \N \N -1767 8 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1768 8 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1769 8 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1770 8 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1771 8 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1772 8 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1773 8 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1774 8 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1775 8 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1776 8 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1777 8 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1778 8 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1779 8 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1780 8 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1781 8 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1782 8 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1783 8 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1784 8 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1785 8 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1786 8 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1787 8 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1788 8 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1789 8 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1790 8 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1791 8 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1792 8 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1793 8 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1794 8 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1795 8 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1796 8 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1797 8 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1798 8 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1799 8 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1800 8 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1801 8 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1802 8 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1803 8 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1804 8 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1805 8 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1806 8 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1807 8 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1808 8 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1809 8 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1810 8 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1811 8 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1812 34 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1813 34 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1814 34 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1815 34 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1816 34 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1818 34 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1819 34 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1820 34 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1821 34 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1822 34 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1823 34 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1824 34 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1825 34 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1826 34 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1827 34 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1828 34 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1829 34 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1830 34 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1831 34 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1832 34 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1833 34 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1834 34 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1835 34 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1836 34 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1837 34 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1838 34 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1839 34 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1840 34 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1841 34 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1842 34 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1843 34 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1844 34 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1845 34 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1846 34 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1848 37 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -1849 37 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1850 37 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1851 37 2017-06-10 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -1852 37 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1853 36 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1854 36 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1855 36 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1856 36 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1857 36 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1858 36 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1859 36 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1860 36 2017-06-05 11:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1861 36 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1862 36 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1863 36 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1864 36 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1865 36 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1866 36 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1867 36 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1868 36 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1869 36 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1870 36 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1871 36 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1872 36 2017-06-08 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -1873 36 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1874 36 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1875 36 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1876 36 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1877 36 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1878 36 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1879 36 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1880 36 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1881 36 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1882 36 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1883 36 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1884 36 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1885 36 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1886 36 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1887 25 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1888 25 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1889 25 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1890 25 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1891 25 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1892 25 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1893 25 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1894 25 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1895 25 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1896 25 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1897 25 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1898 25 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1899 25 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1900 25 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1901 25 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1902 25 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1903 25 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1904 25 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1905 25 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1906 25 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1907 25 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1908 25 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1909 25 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1910 25 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1911 25 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1912 25 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1913 25 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1914 25 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1915 25 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1916 25 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1917 25 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1918 25 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1919 25 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1920 33 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1921 33 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1922 33 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1923 33 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1924 33 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1925 33 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1926 33 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1927 33 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1928 33 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1929 33 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1930 33 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1931 33 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1932 33 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1933 33 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1934 33 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1935 33 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1936 33 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1937 33 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1938 33 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1939 33 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1940 33 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1941 33 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1942 33 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1943 33 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1944 33 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1945 33 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1946 33 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1947 33 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1948 33 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1949 33 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1950 33 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1951 33 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1952 33 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1953 33 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1954 33 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1955 33 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1956 33 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1957 33 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1958 33 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1959 33 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1960 33 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1961 33 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1962 33 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1963 11 2017-06-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1964 11 2017-06-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1965 11 2017-07-12 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1966 11 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1967 11 2017-07-20 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1968 11 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1969 11 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1970 11 2017-07-27 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1971 11 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1972 11 2017-06-08 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1973 11 2017-06-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1974 11 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1975 11 2017-06-22 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1976 11 2017-08-04 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1977 11 2017-07-26 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1978 11 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1979 11 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1980 11 2017-07-13 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1981 11 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1982 11 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1983 11 2017-06-14 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1984 11 2017-07-07 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1985 11 2017-06-29 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1986 11 2017-06-28 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1987 11 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1988 11 2017-06-15 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1989 11 2017-07-21 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1990 11 2017-07-14 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1991 11 2017-06-07 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1992 11 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1993 11 2017-07-28 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1994 11 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1995 11 2017-08-03 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1996 11 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1997 11 2017-06-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1998 11 2017-06-21 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1999 11 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2000 11 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2001 11 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2002 11 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2003 11 2017-08-02 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -2004 11 2017-07-19 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -2005 11 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2006 29 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2007 29 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2008 29 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2009 29 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2010 29 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2011 29 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2012 29 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2013 29 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2014 29 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2015 29 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2016 29 2017-07-06 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2017 29 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2018 29 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2019 29 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2020 29 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2021 29 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2022 29 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2023 29 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2024 29 2017-07-07 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2025 29 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2026 29 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2027 29 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2028 29 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2029 29 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2030 29 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2031 29 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2032 29 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2033 29 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2034 29 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2035 29 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2036 29 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2037 29 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2038 29 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2039 29 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2040 29 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2041 29 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2042 29 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2043 29 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2044 29 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2045 32 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2046 32 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2047 32 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2048 32 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2049 32 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2050 32 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2051 32 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2052 32 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2053 32 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2054 32 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2055 32 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2056 32 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2057 32 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2058 32 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2059 32 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2060 32 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2061 32 2017-06-05 10:30:00 14:30:00 17:30:00 21:30:00 01:00:00 \N \N -2062 32 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2063 32 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2064 32 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2065 32 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2066 32 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2067 32 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2068 32 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2069 32 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2070 32 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2071 32 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2072 32 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2073 15 2017-08-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2074 15 2017-06-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2075 15 2017-06-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2076 15 2017-07-29 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2077 15 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2078 15 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2079 15 2017-07-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2080 15 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2081 15 2017-06-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2082 15 2017-06-15 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2083 15 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2084 15 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2085 15 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2086 15 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2087 15 2017-06-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2088 15 2017-07-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2089 15 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2090 15 2017-08-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2091 15 2017-08-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2092 15 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2093 15 2017-07-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2094 15 2017-07-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2095 15 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2096 15 2017-06-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2097 15 2017-06-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2098 15 2017-06-08 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2099 15 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2100 15 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2101 15 2017-06-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2102 15 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2103 15 2017-07-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2104 24 2017-07-12 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2105 24 2017-06-07 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -2106 24 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2107 24 2017-07-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2108 24 2017-07-16 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2109 24 2017-07-31 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2110 24 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2111 24 2017-07-04 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2112 24 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2113 24 2017-08-03 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2114 24 2017-07-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2115 24 2017-06-21 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2116 24 2017-06-17 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2117 24 2017-06-14 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2118 24 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2119 24 2017-08-01 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2120 24 2017-06-29 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2121 24 2017-06-28 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2122 24 2017-06-16 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2123 24 2017-07-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2124 24 2017-06-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2125 24 2017-06-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2126 24 2017-07-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2127 24 2017-07-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2128 24 2017-08-04 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2129 24 2017-08-02 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2130 24 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2131 24 2017-07-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2132 24 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2133 24 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2134 24 2017-07-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2135 24 2017-07-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2136 24 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2137 24 2017-06-18 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2138 24 2017-06-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2139 24 2017-06-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2140 24 2017-06-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2141 24 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2142 24 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2143 24 2017-06-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2144 1 2017-07-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2145 1 2017-06-18 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2146 1 2017-06-10 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2147 1 2017-06-13 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2148 1 2017-07-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2149 1 2017-06-11 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2150 1 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2151 1 2017-08-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2152 1 2017-07-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2153 1 2017-07-26 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2154 1 2017-07-19 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2155 1 2017-08-05 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2156 1 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2157 1 2017-08-06 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2158 1 2017-07-22 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2159 1 2017-06-14 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2160 1 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2161 1 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2162 1 2017-08-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2163 1 2017-06-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2164 1 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2165 1 2017-07-30 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2166 1 2017-07-12 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2167 1 2017-06-07 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2168 1 2017-07-23 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2169 1 2017-07-29 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2170 1 2017-07-16 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2171 1 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2172 1 2017-07-15 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2173 1 2017-06-17 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2174 26 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2175 26 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2176 26 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2177 26 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2178 26 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2179 26 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2180 26 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2181 26 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2182 26 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2183 26 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2184 26 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2185 26 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2186 26 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2187 26 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2188 26 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2189 26 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2190 26 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2191 26 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2192 26 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2193 26 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2194 26 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2195 26 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2196 26 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2197 26 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2198 26 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2199 26 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2200 26 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2201 26 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2202 26 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2203 26 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2204 26 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2205 26 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2206 26 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2207 26 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2208 26 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2209 26 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2210 26 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2211 26 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2212 30 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2213 30 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2214 30 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2215 30 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2216 30 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2217 30 2017-06-25 10:30:00 14:30:00 \N \N 01:00:00 \N \N -2218 30 2017-07-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2219 30 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2220 30 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2221 30 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2222 30 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2223 30 2017-07-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2224 30 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2225 30 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2226 30 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2227 30 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2228 30 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2229 30 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2230 30 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2231 30 2017-07-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2232 28 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2233 28 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2234 28 2017-06-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2235 28 2017-06-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2236 28 2017-06-26 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2237 28 2017-06-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2238 28 2017-07-27 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2239 28 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2240 28 2017-07-24 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2241 28 2017-07-22 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2242 28 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2243 28 2017-07-13 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2244 28 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2245 28 2017-07-26 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2246 28 2017-07-19 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2247 28 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2248 28 2017-07-25 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2249 28 2017-06-27 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2250 28 2017-07-30 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2251 28 2017-07-21 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2252 28 2017-06-20 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2253 28 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2254 28 2017-06-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2255 28 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2256 28 2017-07-04 11:00:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2257 28 2017-06-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2258 28 2017-07-15 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2259 28 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2260 28 2017-07-29 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2261 28 2017-07-20 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2262 28 2017-07-28 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2263 28 2017-07-16 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2264 28 2017-07-23 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2265 28 2017-07-12 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2266 28 2017-07-14 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2267 28 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2268 19 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2269 19 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2270 19 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2271 19 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2272 19 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2273 19 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2274 19 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2275 19 2017-06-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2276 19 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2277 19 2017-06-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2278 19 2017-07-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2279 19 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2280 19 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2281 19 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2282 19 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2283 19 2017-06-21 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2284 19 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2285 19 2017-06-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2286 19 2017-07-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2287 19 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2288 19 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2289 19 2017-06-23 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2290 19 2017-06-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2291 19 2017-06-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2292 19 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2293 35 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2294 35 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2295 35 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2296 35 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2297 35 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2298 35 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2299 35 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2300 35 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2301 35 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2302 35 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2303 35 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2304 35 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2305 35 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2306 35 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2307 35 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2308 35 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2309 35 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2310 35 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2311 35 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2312 35 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2313 35 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2314 35 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2315 35 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2316 35 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2317 35 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2318 35 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2319 35 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2320 35 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2321 35 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2322 35 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2323 35 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2324 35 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2325 35 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2326 4 2017-08-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2327 4 2017-06-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2328 4 2017-07-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2329 4 2017-08-02 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2330 4 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2331 4 2017-06-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2332 4 2017-06-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2333 4 2017-07-28 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2334 4 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2335 4 2017-06-30 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2336 4 2017-08-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2337 4 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2338 4 2017-06-21 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2339 4 2017-07-02 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2340 4 2017-06-07 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2341 4 2017-07-14 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2342 4 2017-07-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2343 4 2017-06-28 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2344 4 2017-06-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2345 4 2017-07-21 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2346 4 2017-07-30 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2347 4 2017-06-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2348 4 2017-07-07 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2349 4 2017-06-14 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2350 4 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2351 4 2017-07-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2352 4 2017-07-09 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2353 4 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2354 4 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2355 4 2017-08-04 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2356 4 2017-07-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2357 4 2017-06-09 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2358 4 2017-06-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2359 4 2017-06-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2360 4 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2361 4 2017-07-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2362 4 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2363 4 2017-07-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2364 4 2017-07-16 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2365 4 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2366 4 2017-07-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2367 4 2017-07-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2368 4 2017-07-23 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2369 4 2017-06-16 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2370 4 2017-06-23 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2371 20 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2372 20 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2373 20 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2374 20 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2375 20 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2376 20 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2377 20 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2378 20 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2379 20 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2380 20 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2381 20 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2382 20 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2383 20 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2384 20 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2385 20 2017-06-14 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2386 20 2017-06-15 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2387 20 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2388 20 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2389 20 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2390 20 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2391 20 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2392 20 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2393 20 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2394 20 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2395 20 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2396 20 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2397 20 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2398 20 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2399 20 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2400 20 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2401 20 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2402 20 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2403 20 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2404 20 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2406 20 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2407 20 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2408 20 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2409 20 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2410 20 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2411 20 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2412 20 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2413 20 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2414 20 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2415 20 2017-06-16 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2416 16 2017-06-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2417 16 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2418 16 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2419 16 2017-06-13 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2420 16 2017-06-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2421 16 2017-07-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2422 16 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2423 16 2017-06-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2424 16 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2425 16 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2426 16 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2427 16 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2428 16 2017-08-01 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2429 16 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2430 16 2017-06-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2431 16 2017-06-12 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2432 16 2017-07-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2433 16 2017-06-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2434 16 2017-06-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2435 16 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2436 16 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2437 16 2017-07-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2438 16 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2439 16 2017-07-31 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2440 16 2017-06-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2441 16 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2442 16 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2443 16 2017-07-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2444 16 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2445 16 2017-07-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2446 16 2017-07-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2447 16 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2448 16 2017-07-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2449 16 2017-07-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2450 16 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2451 16 2017-06-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2452 16 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2453 16 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2454 16 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2455 16 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2456 16 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2457 16 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2458 16 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2459 16 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2460 16 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2461 43 2017-07-11 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2462 43 2017-07-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2463 43 2017-06-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2464 43 2017-06-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2465 43 2017-06-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2466 43 2017-06-22 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2467 43 2017-06-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2468 43 2017-07-25 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2469 43 2017-07-10 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2470 43 2017-08-02 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2471 43 2017-08-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2472 43 2017-07-18 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2473 43 2017-07-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2474 43 2017-07-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2475 43 2017-07-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2476 43 2017-07-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2477 43 2017-07-24 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2478 43 2017-06-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2479 43 2017-06-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2480 43 2017-07-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2481 43 2017-08-01 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2482 43 2017-06-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2483 43 2017-06-29 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2484 43 2017-06-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2485 43 2017-06-16 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2486 43 2017-06-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2487 43 2017-07-17 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2488 43 2017-06-15 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2489 43 2017-07-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2490 43 2017-07-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2491 43 2017-07-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2492 43 2017-06-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2493 43 2017-07-05 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2494 43 2017-07-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2495 43 2017-07-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2496 43 2017-07-31 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2497 43 2017-07-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2498 43 2017-07-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2499 43 2017-06-30 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2500 43 2017-08-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2501 43 2017-06-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2502 17 2017-06-22 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2503 17 2017-06-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2504 17 2017-06-09 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2505 17 2017-06-08 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2506 17 2017-06-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2507 17 2017-07-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2508 17 2017-07-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2509 17 2017-07-10 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2510 17 2017-07-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2511 17 2017-08-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2512 17 2017-06-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2513 17 2017-07-17 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2514 17 2017-06-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2515 17 2017-06-16 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2516 17 2017-08-01 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2517 17 2017-06-23 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2518 17 2017-06-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2519 17 2017-06-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2520 17 2017-07-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2521 17 2017-07-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2522 17 2017-07-31 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2523 17 2017-07-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2524 17 2017-07-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2525 17 2017-06-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2526 17 2017-07-11 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2527 17 2017-07-24 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2528 17 2017-07-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2529 17 2017-07-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2530 17 2017-07-18 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2531 17 2017-08-02 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2532 17 2017-07-25 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2533 17 2017-06-15 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2534 17 2017-07-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2535 17 2017-06-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2536 17 2017-06-29 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2537 17 2017-06-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2538 17 2017-07-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2539 17 2017-06-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2540 17 2017-08-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2541 17 2017-06-30 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2542 17 2017-06-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2543 17 2017-07-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2544 17 2017-07-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2545 17 2017-06-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2546 17 2017-07-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2547 2 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2548 2 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2549 2 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2550 2 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2551 2 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2552 2 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2553 2 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2554 2 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2555 2 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2556 2 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2557 2 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2558 2 2017-07-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2559 2 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2560 2 2017-07-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2561 2 2017-06-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2562 2 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2563 2 2017-06-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2564 2 2017-06-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2565 2 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2566 2 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2567 2 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2568 2 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2569 2 2017-07-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2570 2 2017-06-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2571 2 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2572 2 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2573 2 2017-06-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2574 2 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2575 2 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2576 2 2017-06-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2577 2 2017-07-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2578 2 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2579 2 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2580 2 2017-08-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2581 2 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2582 2 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2583 2 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2584 2 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2585 2 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2586 2 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2587 2 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2588 2 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2589 2 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2590 2 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2591 2 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2592 7 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2593 7 2017-07-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2594 7 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2595 7 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2596 7 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2597 7 2017-06-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2598 7 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2599 7 2017-06-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2600 7 2017-07-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2601 7 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2602 7 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2603 7 2017-07-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2604 7 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2605 7 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2606 7 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2607 7 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2608 7 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2609 7 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2610 7 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2611 7 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2612 7 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2613 7 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2614 7 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2615 7 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2616 7 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2617 7 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2618 7 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2619 7 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2620 7 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2621 7 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2622 7 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2623 7 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2624 7 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2625 7 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2626 7 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2627 7 2017-08-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2628 7 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2629 7 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2630 7 2017-07-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2631 7 2017-06-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2632 7 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2633 7 2017-06-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2634 7 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2635 7 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2636 7 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2637 9 2017-06-24 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2638 9 2017-06-25 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2639 9 2017-07-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2640 9 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2641 9 2017-06-18 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2642 9 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2643 9 2017-08-06 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2644 9 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2645 9 2017-07-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2646 9 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2647 9 2017-07-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2648 9 2017-07-30 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2649 9 2017-07-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2650 9 2017-07-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2651 9 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2652 9 2017-07-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2653 9 2017-07-29 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2654 9 2017-06-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2655 9 2017-07-15 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2656 9 2017-07-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2657 9 2017-07-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2658 9 2017-06-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2659 9 2017-06-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2660 9 2017-07-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2661 9 2017-06-10 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2662 9 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2663 9 2017-08-05 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2664 9 2017-07-09 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2665 9 2017-07-08 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2666 9 2017-07-22 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2667 9 2017-06-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2668 9 2017-08-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2669 9 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2670 9 2017-06-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2671 9 2017-06-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2672 9 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2673 9 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2674 9 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2675 9 2017-08-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2676 9 2017-06-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2677 9 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2678 9 2017-07-16 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2679 9 2017-06-17 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2680 9 2017-07-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2681 9 2017-07-23 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2682 \N 2017-06-23 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2683 \N 2017-06-16 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2684 \N 2017-07-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2685 \N 2017-07-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2686 \N 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2687 \N 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2688 \N 2017-07-20 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2689 \N 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2690 \N 2017-07-27 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2691 \N 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2692 \N 2017-06-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2693 \N 2017-06-09 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2694 \N 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2695 \N 2017-06-22 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2696 \N 2017-07-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2697 \N 2017-08-04 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2698 \N 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2699 \N 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2700 \N 2017-07-13 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2701 \N 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2702 \N 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2703 \N 2017-06-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2704 \N 2017-07-07 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2705 \N 2017-06-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2706 \N 2017-06-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2707 \N 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2708 \N 2017-06-15 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2709 \N 2017-07-21 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2710 \N 2017-07-14 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2711 \N 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2712 \N 2017-07-06 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2713 \N 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2714 \N 2017-07-28 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2715 \N 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2716 \N 2017-06-30 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2717 \N 2017-08-03 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2718 \N 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2719 \N 2017-06-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2720 \N 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2721 \N 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2722 \N 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2723 \N 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2724 \N 2017-08-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2725 \N 2017-07-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2726 \N 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2727 13 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2728 13 2017-06-11 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2729 13 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2730 13 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2731 13 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2732 13 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2733 13 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2734 13 2017-07-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2735 13 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2736 13 2017-08-06 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2737 13 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2738 13 2017-06-25 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2739 13 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2740 13 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2741 13 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2742 13 2017-07-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2743 13 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2744 13 2017-07-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2745 13 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2746 13 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2747 13 2017-07-02 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2748 13 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2749 13 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2750 13 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2751 13 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2752 13 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2753 13 2017-07-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2754 13 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2755 13 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2756 31 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2757 31 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2758 31 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2759 31 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2760 31 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2761 31 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2762 31 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2763 31 2017-06-09 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2764 31 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2765 31 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2766 31 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2767 31 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2768 31 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2769 31 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2770 31 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2771 31 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2772 31 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2773 31 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2774 31 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2775 31 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2776 31 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2777 31 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2778 31 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2779 31 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2780 31 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2781 12 2017-07-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2782 12 2017-07-14 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2783 12 2017-07-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2784 12 2017-06-30 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2785 12 2017-08-03 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2786 12 2017-07-15 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2787 12 2017-07-29 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2788 12 2017-07-28 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2789 12 2017-06-06 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2790 12 2017-07-07 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2791 12 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2792 12 2017-07-21 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2793 12 2017-06-15 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2794 12 2017-06-29 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2795 12 2017-07-18 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2796 12 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2797 12 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2798 12 2017-07-25 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2799 12 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2800 12 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2801 12 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2802 12 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2803 12 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2804 12 2017-07-11 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2805 12 2017-06-24 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2806 12 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2807 12 2017-07-04 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2808 12 2017-06-17 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2809 12 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2810 12 2017-07-20 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2811 12 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2812 12 2017-06-23 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2813 12 2017-08-01 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2814 12 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2815 12 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2816 12 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2817 12 2017-06-16 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2818 12 2017-06-20 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2819 12 2017-08-04 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2820 12 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2821 12 2017-06-27 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2822 12 2017-07-22 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2823 12 2017-07-08 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2824 12 2017-08-05 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2825 12 2017-07-13 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2826 12 2017-07-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2827 12 2017-06-10 10:30:00 15:30:00 17:30:00 21:45:00 01:00:00 \N \N -2828 12 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2829 12 2017-07-27 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2830 12 2017-07-01 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2831 12 2017-06-22 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2832 12 2017-06-08 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2833 12 2017-06-09 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2834 12 2017-06-13 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2835 23 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2836 23 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2837 23 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2838 23 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2839 23 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2840 23 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2841 23 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2842 23 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2843 23 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2844 23 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2845 23 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2846 23 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2847 23 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2848 23 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2849 23 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2850 23 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2851 23 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2852 23 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2853 23 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2854 23 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2855 23 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2856 23 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2857 23 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2858 23 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2859 23 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2860 23 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2861 23 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2862 23 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2863 23 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2864 23 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2865 23 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2866 23 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2867 23 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2868 23 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2869 23 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2870 23 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2871 23 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2872 23 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2873 23 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2874 21 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2875 21 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2876 21 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2877 21 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2878 21 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2879 21 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2880 21 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2881 21 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2882 21 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2883 21 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2884 21 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2885 21 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2886 21 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2887 21 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2888 21 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2889 21 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2890 21 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2891 21 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2892 21 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2893 21 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2894 21 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2895 21 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2896 21 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2897 21 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2898 21 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2899 21 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2900 21 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2901 21 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2902 21 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2903 21 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2904 21 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2905 21 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2906 21 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2907 21 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2908 21 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2909 21 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2910 21 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2911 21 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2912 10 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2913 10 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2914 10 2017-07-06 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2915 10 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2916 10 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2917 10 2017-07-02 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2918 10 2017-08-03 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2919 10 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2920 10 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2921 10 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2922 10 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2923 10 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2924 10 2017-06-29 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2925 10 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2926 10 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2927 10 2017-07-30 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2928 10 2017-06-15 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2929 10 2017-06-11 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2930 10 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2931 10 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2932 10 2017-08-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2933 10 2017-06-25 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2934 10 2017-06-18 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2935 10 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2936 10 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2937 10 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2938 10 2017-07-23 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2939 10 2017-07-16 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2940 10 2017-07-20 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2941 10 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2942 10 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2943 10 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2944 10 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2945 10 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2946 10 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2947 10 2017-07-09 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2948 10 2017-08-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2949 10 2017-07-13 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2950 10 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2951 10 2017-07-27 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2952 10 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2953 10 2017-06-08 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2954 10 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2955 10 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2956 10 2017-06-22 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2957 5 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2958 5 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2959 5 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2960 5 2017-07-20 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2961 5 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2962 5 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2963 5 2017-06-16 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2964 5 2017-06-23 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2965 5 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2966 5 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2967 5 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2968 5 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2969 5 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2970 5 2017-07-13 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2971 5 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2972 5 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2973 5 2017-08-04 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2974 5 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2975 5 2017-06-22 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2976 5 2017-06-08 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2977 5 2017-06-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2978 5 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2979 5 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2980 5 2017-07-27 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2981 5 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2982 5 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2983 5 2017-08-03 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2984 5 2017-06-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2985 5 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2986 5 2017-07-28 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2987 5 2017-07-06 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2988 5 2017-07-14 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2989 5 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2990 5 2017-06-15 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2991 5 2017-07-21 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2992 5 2017-06-29 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2993 5 2017-07-07 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2994 5 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2995 5 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2996 5 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2997 5 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2998 5 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2999 5 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3000 5 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3001 5 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3002 44 2017-07-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3003 44 2017-07-20 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3004 44 2017-07-31 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3005 44 2017-07-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3006 44 2017-08-03 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3007 44 2017-06-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3008 44 2017-06-30 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3009 44 2017-07-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3010 44 2017-07-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3011 44 2017-07-05 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3012 44 2017-07-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3013 44 2017-06-29 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3014 44 2017-06-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3015 44 2017-06-16 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3016 44 2017-07-17 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3017 44 2017-07-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3018 44 2017-06-15 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3019 44 2017-06-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3020 44 2017-06-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3021 44 2017-07-07 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3022 44 2017-08-01 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3023 44 2017-06-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3024 44 2017-07-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3025 44 2017-07-24 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3026 44 2017-06-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3027 44 2017-07-25 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3028 44 2017-07-10 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3029 44 2017-08-02 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3030 44 2017-08-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3031 44 2017-07-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3032 44 2017-07-18 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3033 44 2017-07-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3034 44 2017-06-08 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3035 44 2017-06-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3036 44 2017-06-09 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3037 44 2017-06-22 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3038 44 2017-07-11 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3039 44 2017-07-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3040 44 2017-06-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3041 44 2017-06-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3042 22 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3043 22 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3044 22 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3045 22 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3046 22 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3047 22 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3048 22 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3049 22 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3050 22 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3051 22 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3052 22 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3053 22 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3054 22 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3055 22 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3056 22 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3057 22 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3058 22 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3059 22 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3060 22 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3061 22 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3062 22 2017-06-06 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -3063 22 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3064 22 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3065 22 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3066 22 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3067 22 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3068 22 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -3069 22 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3070 22 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3071 22 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3072 22 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3073 22 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3074 22 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3075 22 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3076 22 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3077 22 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3078 22 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3079 22 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3080 22 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3081 22 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3082 22 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3083 22 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3084 3 2017-07-07 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3085 3 2017-06-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3086 3 2017-06-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3087 3 2017-06-23 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3088 3 2017-06-16 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3089 3 2017-06-29 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3090 3 2017-07-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3091 3 2017-06-15 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3092 3 2017-07-06 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3093 3 2017-07-31 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3094 3 2017-07-28 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3095 3 2017-07-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3096 3 2017-06-17 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3097 3 2017-06-30 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3098 3 2017-08-03 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3099 3 2017-07-02 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3100 3 2017-06-25 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3101 3 2017-06-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3102 3 2017-06-10 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3103 3 2017-06-18 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3104 3 2017-06-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3105 3 2017-06-09 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3106 3 2017-06-08 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3107 3 2017-06-24 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3108 3 2017-06-22 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3109 3 2017-07-01 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3110 3 2017-06-11 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3111 3 2017-07-03 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3112 3 2017-08-04 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3113 3 2017-07-10 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3114 3 2017-08-05 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3115 3 2017-07-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3116 3 2017-07-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3117 3 2017-08-06 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -\. +-- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- + +ALTER TABLE ONLY demo.stations + ADD CONSTRAINT stations_pkey PRIMARY KEY (id); -- --- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user -- -COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; -1 Standard 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N -\. +ALTER TABLE ONLY demo.timetrackuser + ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); -- --- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; -1 normal t \N \N -5 congé extra t t #e26b0a -2 congé t t #fcd5b4 -4 congé maladie t t #f2dcdb -3 training t \N #b7dee8 -6 jour ferié t \N #92d050 -7 libre jours \N \N #0070c0 -\. +ALTER TABLE ONLY portanova.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); -- --- Data for Name: apps; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.apps (id, app, description, name, id_usergroup, icon, sort, menutype) FROM stdin; -8 timetrackers Pointeuses Pointeuses \N cube.svg 7 schema -10 sites Sites Sites \N cube.svg 6 schema -4 profile Profil mes coordonnées 5 user.svg 9 global -5 users Utilisateurs utilisateurs 2 group.svg 11 global -7 staff Employé(e)s employé(e)s 3 group.svg 4 schema -9 planning Planning POT 3 poticon.svg 5 schema -6 companies Entreprise entreprise 2 cube.svg 10 global -11 workplans Plans de travail plans (modèles) 3 calendar.svg 8 schema -\. +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- --- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.companies (id, company, address, zip, city, country, tradetype, comregister, vatnumber, schemata, validated, schemata2, email, socialtype, vatvalidated) FROM stdin; -1 DKS 8b, rue du Moulin 6914 Roodt-sur-Syre Luxemburg \N \N \N portanova \N \N support@dks.lu s.à r.l. \N -\. +ALTER TABLE ONLY portanova.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Data for Name: maillayouts; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.maillayouts (id, layoutname, mailtemplate) FROM stdin; -1 potbasic \r\n \r\n \r\n \r\n \r\n \r\n
\r\n POT - Plan d'organisation de travail\r\n
\r\n
\r\n %%BODYCONTENT%%\r\n
\r\n
\r\n
\r\n \r\n -\. +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); -- --- Data for Name: mailtemplates; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.mailtemplates (id, templatename, emailtext, emaildatasql, mailfrom, mailsubject, id_maillayout) FROM stdin; -1 user_registration Bonjour %%prename%% %%surname%%,
\n
\nMerci pour votre création de compte sur pot.lu,\n

\nvotre login: %%username%%
\nvotre mot de passe: %%password%%\n
\nMeilleurs salutations,
\n
\nPOT Support Team select prename,surname,username from users where id='%%id%%'; support@dks.lu Confirmation requis pour votre création de compte sur pot.lu 1 -2 user_forgotpasswd Bonjour %%prename%% %%surname%%,

\n\nvous avez demandé un nouveau mot de passe via pot.lu!
\nnouveau mot de passe: %%newpassword%%

\n
\nMeilleurs salutations,
\n
\nPOT Support Team\n\n\n\n select prename,surname from users where id='%%id%%'; support@dks.lu Nouveau mot de passe pour le site pot.lu 1 -3 user_expiration_notice Bonjour %%prename%% %%surname%%,
\n
\nVotre souscription au site pot.lu expire bientôt,\n

\nn'oublié pas à la prolonger!\nProlonger maintenant\n
\nMeilleurs salutations,
\n
\npot.lu Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Notice d'expiration de votre souscription sur pot.lu 1 -4 user_invoice_paypal Bonjour %%prename%% %%surname%%,
\n
\nEn annexe vous trouvez la facture pour votre souscription au site pot.lu,\n
\nVous avez Payé déjà via PayPal!\n\nMeilleurs salutations,
\n
\npot.lu Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Info facture pour votre souscription sur pot.lu 1 -5 user_invoice Bonjour %%prename%% %%surname%%,
\n
\nEn annexe vous trouvez la facture pour votre souscription au site pot.lu,\n
\n\nMeilleurs salutations,
\n
\nPOT Support Team select prename,surname from users where id='%%id%%'; support@dks.lu Facture concernant votre souscription sur pot.lu 1 -6 user_verification Bonjour %%prename%% %%surname%%,
\r\n
\r\nLe code pour valider votre e-mail est:\r\n
\r\n%%vcode%%
\r\n
\r\nentrez le code ici: %%siteurl%%/backoffice/validationcode.html\r\n
\r\nMéilleurs Salutations,
\r\n
\r\npot.lu Support Team select prename,surname,username from users where id='%%id%%'; support@dks.lu Validation de votre Email pour le site pot.lu 1 -7 user_newpassword Bonjour %%prename%% %%surname%%,
\r\n
\r\nNous avons crées / modifé votre compte sur le site pot.lu;
\r\n
\r\nVotre Login: %%username%%
\r\nMot de passe: %%newpassword%%

\r\n
\r\nméilleurs Salutations,
\r\n
\r\npot.lu Support-Team
\r\n select prename,surname,username from users where id='%%id%%'; support@dks.lu coordonnées d'accès de votre compte sur pot.lu 1 -\. +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -- --- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.sessions (id, idsession, id_user, user_agent, remote_addr, created) FROM stdin; -111 uWpnqxhEFJt2MZxMoLSz4ZAZoc3ZJnu3aKhq8oVD 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:213c:73ba:ffa7:842b 2019-12-05 19:16:43.969105 -112 mUmGFzD4kPLyhHfJO9TDOGfCtsVAEefRYrotRRo1 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:7946:65e2:f587:8b74 2019-12-06 07:02:23.094765 -113 HaDg0Eh9nIk7lftrHDtQpaKiLWL66VoEWRKMmSLz 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-09 11:33:13.202044 -114 aSli1lR9B0ETjICf7IFjVxhphLd8dhRdZ2mRd4RE 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362 ::1 2019-12-10 15:55:53.526432 -122 Sp2D9CvtdjQHaxLPkEXgqSMSveIJwQde56I5y3oC 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 2001:7e8:cc73:de00:d970:312a:d5d:db83 2019-12-12 07:06:51.913155 -124 NUTU0TkWd81oxH4ig52WCA3HzccA3bmHW5sMPCyT 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-15 11:44:06.485589 -93 5P7159lXg8xY83Iu7eZC3hj3Oi6x29jXOhPKg0yn 1 Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Mobile Safari/537.36 ::1 2019-12-04 14:58:48.993651 -98 9UisAitYaoxdqtBaWUI37R04CiBlFxcp0STuCOZRU 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 ::1 2019-12-05 07:34:07.997426 -99 v6wZ65qozoWn5P32q4wg16224TcOAM1VJnLFj1UJ 1 Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 192.168.178.23 2019-12-05 07:35:01.756219 -160 pMEnznbOdbCeLbtKUwxgVbn2PNVzrF0HhvVHIWmL 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36 ::1 2019-12-20 12:48:16.464228 -161 fvhUhEhy8bRQnrZd1I0oVdAwntMj86Xdr5Yzz6Yy 1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36 ::1 2019-12-22 09:58:14.675553 -\. +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); -- --- Data for Name: usergroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.usergroups (id, usergroup, isdefault, groupname) FROM stdin; -1 superadmin \N SuperAdmin -2 admin \N Admin -4 site \N Site -5 user t Utilisateur -3 manager \N Gérant -\. +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); -- --- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.users (id, userpassword, created, blocked, username, regcode, vcode, schemaaccess, id_usergroups, surname, prename, phone, job, id_company) FROM stdin; -2 f7252754a4cb7391d966316351b3501bce81fee9bc0b71807ddf61281a27821e 2019-12-20 11:03:08.757357 \N kilian@saffran.lu \N \N ["portanova"] ["5"] Saffran Kilian 691504574 \N 1 -1 228c27a646f18ce069bc2b8ef091a03c46cd51557e5b5ac90abc05c4f635b3ba 2019-10-10 17:12:11.934747 \N kilian.saffran@gmail.com \N 6tgfkew ["portanova"] ["2","5","3"] Saffran Kilian +352691504574 Gérant 1 -\. +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Data for Name: zzold_members; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffreportperiodweeks staffweeksums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.zzold_members (id, surname, prename, phone, id_user, id_company, job) FROM stdin; -1 Saffran Kilian \N 1 1 \N -\. +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -- --- Data for Name: zzold_useringroups; Type: TABLE DATA; Schema: public; Owner: potlu_user +-- Name: staffreportperioddays staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -COPY public.zzold_useringroups (id, id_user, id_group) FROM stdin; -1 1 1 -\. +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: staff_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('demo.staff_id_seq', 1, true); +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); -- --- Name: stations_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('demo.stations_id_seq', 1, false); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); -- --- Name: timetrackuser_id_seq; Type: SEQUENCE SET; Schema: demo; Owner: potlu_user +-- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('demo.timetrackuser_id_seq', 5, true); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT uniq_staffweekplan_cal UNIQUE (id_reportperiod, id_staff, calyear, calweek); -- --- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 7, true); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); -- --- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); +ALTER TABLE ONLY portanova.vacancydays + ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); -- --- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 3, true); +ALTER TABLE ONLY portanova.vacancytypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 45, true); +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); -- --- Name: staffvacancy_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); -- --- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3122, true); +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); -- --- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); -- --- Name: worktypes_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- --- Name: apps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user -- -SELECT pg_catalog.setval('public.apps_id_seq', 11, true); +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); -- --- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.companies_id_seq', 24, true); +ALTER TABLE ONLY test.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- --- Name: maillayouts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.maillayouts_id_seq', 1, true); +ALTER TABLE ONLY test.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); -- --- Name: mailtemplates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.mailtemplates_id_seq', 7, true); +ALTER TABLE ONLY test.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Name: members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.members_id_seq', 1, false); +ALTER TABLE ONLY test.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); -- --- Name: sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.sessions_id_seq', 161, true); +ALTER TABLE ONLY test.staffcontract + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -- --- Name: usergroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.usergroups_id_seq', 4, true); +ALTER TABLE ONLY test.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); -- --- Name: useringroups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.useringroups_id_seq', 1, true); +ALTER TABLE ONLY test.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: potlu_user +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -SELECT pg_catalog.setval('public.users_id_seq', 2, true); +ALTER TABLE ONLY test.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY demo.staff - ADD CONSTRAINT staff_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY demo.stations - ADD CONSTRAINT stations_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: potlu_user +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY demo.timetrackuser - ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.reportperiod +ALTER TABLE ONLY test2.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- --- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.sites +ALTER TABLE ONLY test2.sites ADD CONSTRAINT sites_pkey PRIMARY KEY (id); -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staff +ALTER TABLE ONLY test2.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffgroups +ALTER TABLE ONLY test2.staffgroups ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); -- --- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffcontract +ALTER TABLE ONLY test2.staffcontract ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -- --- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.stafftimetracks +ALTER TABLE ONLY test2.stafftimetracks ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); -- --- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancy +ALTER TABLE ONLY test2.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancyyear +ALTER TABLE ONLY test2.staffvacancyyear ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); -- --- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffworkplan +ALTER TABLE ONLY test2.staffworkplan ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.workplans +ALTER TABLE ONLY test2.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY portanova.worktypes +ALTER TABLE ONLY test2.worktypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.apps - ADD CONSTRAINT apps_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; -- --- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY public.companies - ADD CONSTRAINT company_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW public.vw_userslist AS + SELECT us.id, + us.blocked, + us.username, + string_agg(DISTINCT uga.schemaccess, ','::text) AS schemaaccess, + us.surname, + us.prename, + us.phone, + us.job, + us.id_company, + co.company, + ugrp.groupname, + us.id_usergroup + FROM (((public.users us + LEFT JOIN public.companies co ON ((us.id_company = co.id))) + LEFT JOIN ( SELECT users.id AS id_user, + json_array_elements_text(users.schemaaccess) AS schemaccess + FROM public.users) uga ON ((uga.id_user = us.id))) + LEFT JOIN public.usergroups ugrp ON ((ugrp.id = us.id_usergroup))) + GROUP BY us.id, co.id, ugrp.id; -- --- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffcontract trg_upd_test_weekhours; Type: TRIGGER; Schema: test; Owner: potlu_user -- -ALTER TABLE ONLY public.maillayouts - ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); +CREATE TRIGGER trg_upd_test_weekhours BEFORE UPDATE OF weekhours ON test.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); -- --- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffcontract trg_upd_test2_weekhours; Type: TRIGGER; Schema: test2; Owner: potlu_user -- -ALTER TABLE ONLY public.mailtemplates - ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); +CREATE TRIGGER trg_upd_test2_weekhours BEFORE UPDATE OF weekhours ON test2.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); -- --- Name: zzold_members members_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_members - ADD CONSTRAINT members_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.users - ADD CONSTRAINT uniq_username UNIQUE (username); +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); -- --- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.usergroups - ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: zzold_useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk_1 FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); -- --- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.users - ADD CONSTRAINT users_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); -- --- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY public.sessions - ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk_1 FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: potlu_user +-- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -CREATE OR REPLACE VIEW public.vw_userslist AS - SELECT us.id, - us.blocked, - us.username, - json_array_elements_text(us.schemaaccess) AS schemaaccess, - us.surname, - us.prename, - us.phone, - us.job, - us.id_company, - co.company, - string_agg(ugrp.groupname, ','::text) AS usergroups - FROM (((public.users us - LEFT JOIN public.companies co ON ((us.id_company = co.id))) - LEFT JOIN ( SELECT users.id AS id_user, - (json_array_elements_text(users.id_usergroups))::integer AS id_usergroup - FROM public.users) ugs ON ((ugs.id_user = us.id))) - LEFT JOIN public.usergroups ugrp ON ((ugrp.id = ugs.id_usergroup))) - GROUP BY us.id, co.id; +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: staffcontract trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user -- -CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); -- @@ -4533,27 +13355,19 @@ ALTER TABLE ONLY public.mailtemplates -- --- Name: zzold_members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user --- - -ALTER TABLE ONLY public.zzold_members - ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); - - --- --- Name: zzold_useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: users users_fk; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_fk FOREIGN KEY (id_company) REFERENCES public.companies(id); -- --- Name: zzold_useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user +-- Name: users users_fk_1; Type: FK CONSTRAINT; Schema: public; Owner: potlu_user -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_fk_1 FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); -- diff --git a/dev/db/potlu_db.pg.schema.sql b/dev/db/potlu_db.pg.schema.sql index 189b2465..8785c503 100644 --- a/dev/db/potlu_db.pg.schema.sql +++ b/dev/db/potlu_db.pg.schema.sql @@ -30,6 +30,574 @@ CREATE SCHEMA demo; CREATE SCHEMA portanova; +-- +-- Name: test; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA test; + + +-- +-- Name: test2; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA test2; + + +-- +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='portanova'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from portanova.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + select max(id) into rpparentid from portanova.reportperiod; + --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; + INSERT INTO portanova.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; + perform portanova.update_all_staff_in_period(newperiodid); + return newperiodid; +end; +$$; + + +-- +-- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + + +-- +-- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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 portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +END; +$$; + + +-- +-- Name: onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.onchange_reportperiod(pid_period integer) 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: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) 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 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, + 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; +$$; + + +-- +-- Name: set_staffperiodweek_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from portanova.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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_stafftoperioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_stafftoperioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform portanova.set_periodday_sums(cid_staffworkplan); + cdate = cdate + interval '1 day'; + end loop; + + end loop; + perform portanova.verify_perioddays(pid_period,pid_staff); + return true; +end; +$$; + + +-- +-- Name: set_stafftoperiodweeks(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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 , +coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , +coalesce(sum(dayhours),'00:00:00') as totalhours, +count(id) 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 +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 + --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) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + + +-- +-- Name: update_all_staff_in_period(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from portanova.getperiod_staffcontract(pid_period) group by id_staff + loop + perform portanova.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + + +-- +-- Name: update_staff_in_period(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + BEGIN + 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); + perform portanova.set_staffperiod_sums(pid_period,pid_staff); + return true; + END; +$$; + + +-- +-- Name: update_staffreportperiod(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM portanova.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO portanova.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + + +-- +-- Name: update_staffweeksums(bigint); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan bigint) 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; +$$; + + +-- +-- Name: update_staffworkplan(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffworkplan(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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: zzold_onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) 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: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod where isvalidated != true + loop + perform portanova.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + + +-- +-- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period integer) 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; +$$; + + -- -- Name: checklogin(text, text, text, text); Type: FUNCTION; Schema: public; Owner: - -- @@ -99,17 +667,16 @@ $$; -- Name: getsession(text, text, text); Type: FUNCTION; Schema: public; Owner: - -- -CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroups text, userschemata text) +CREATE FUNCTION public.getsession(vidsession text, vremoteaddr text, vuseragent text) RETURNS TABLE(idsession text, id integer, username text, usergroup text) LANGUAGE plpgsql - AS $$ - BEGIN - return QUERY select se.idsession,us.id,us.username,string_agg(distinct(ugrp.usergroup),',') as usergroups,json_array_elements_text(us.schemaaccess) as userschemata from sessions se + AS $$ + BEGIN + return QUERY select se.idsession,us.id,us.username,ugrp.usergroup from sessions se join users us on (us.id=se.id_user) -left join (SELECT users.id,json_array_elements_text(users.id_usergroups) AS id_usergroup FROM users) ugs on (us.id=ugs.id) -left join usergroups ugrp on (ugrp.id=ugs.id) +left join usergroups ugrp on (ugrp.id=us.id_usergroup) where se.idsession= vidsession and se.remote_addr= vremoteaddr and se.user_agent= vuseragent and -us.blocked is null group by se.id,us.id; - END; +us.blocked is null group by se.id,us.id,ugrp.id; + END; $$; @@ -143,6 +710,23 @@ CREATE FUNCTION public.getweeks(vyear integer) RETURNS TABLE(cw integer, mondays $$; +-- +-- Name: getweeksbydaterange(date, date); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.getweeksbydaterange(datefrom date, dateto date) RETURNS TABLE(calyear integer, calweek integer, weekstart date, weekend date) + LANGUAGE plpgsql + AS $$ + BEGIN + return QUERY select date_part('isoyear',daydate)::int as calyear,date_part('week',daydate)::int4 as calweek,date(date_trunc('week',daydate)) as weekstart , date(date_trunc('week',daydate) + interval '6 days') as weekend +from +(select datefrom + s*'1 day'::interval as daydate from +(select * from generate_series(0,dateto - datefrom )s)x ) d group by calyear,calweek,weekstart,weekend order by weekstart,weekend; + + END; +$$; + + -- -- Name: random_string(integer); Type: FUNCTION; Schema: public; Owner: - -- @@ -160,6 +744,29 @@ end; $$; +-- +-- Name: staffworplan_contracthours(text, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.staffworplan_contracthours(vschemaname text, vcontractid integer) RETURNS void + LANGUAGE plpgsql + AS $$ +declare + cur_contracthours TEXT; + cur_startdate date; + cur_enddate date; + cur_id_staff int4; + BEGIN + execute 'select startdate,enddate,id_staff,to_char(to_timestamp((round(weekhours/weekdays,3)) * 60), ''MI:SS:00'') from ' || vschemaname || '.staffcontract where id=' || vcontractid || ';' into cur_startdate,cur_enddate,cur_id_staff,cur_contracthours; + if cur_enddate is null then + execute 'update ' || vschemaname || '.staffworkplan SET contracthours='''|| cur_contracthours || ''' WHERE id_staff=' || cur_id_staff || ' and daydate>=date(''' || to_char(cur_startdate,'YYYY-MM-DD') || ''');'; + else + execute 'update ' || vschemaname || '.staffworkplan SET contracthours='''|| cur_contracthours || ''' WHERE id_staff=' || cur_id_staff || ' and daydate between date(''' || to_char(cur_startdate,'YYYY-MM-DD') || ''') and date(''' || to_char(cur_enddate,'YYYY-MM-DD') || ''');'; + end if; + END; +$$; + + -- -- Name: trg_update_basemonthhours(); Type: FUNCTION; Schema: public; Owner: - -- @@ -220,10 +827,71 @@ CREATE FUNCTION public.trg_update_monthlyhours() RETURNS trigger $$; +-- +-- Name: weekvacancy(text, double precision, integer); Type: FUNCTION; Schema: public; Owner: - +-- + +CREATE FUNCTION public.weekvacancy(vschema text, vcalweek double precision, vidstaff integer) RETURNS text + LANGUAGE plpgsql + AS $$ + declare + vret text; + xsql text; + begin + xsql := 'select ''{"vacancy":{'' || string_agg(''"'' || id_vacancytype || ''":'' || row_to_json(weekvacancy),'','') || ''}}'' from ( +select vk.id_vacancytype,sum(vk.vacancyhours) as vacancyhours,vt.vacancyname,vt.color,vt.isworktime from portanova.staffworkplan vk + +join ' || vschema || '.vacancytypes vt on (vt.id=vk.id_vacancytype) +where date_part(''week'', daydate)= ' || vcalweek || ' and id_staff= ' || vidstaff || ' group by vk.id_vacancytype,vt.vacancyname,vt.color,vt.isworktime) weekvacancy;'; + --raise notice '%s',xsql; + execute xsql into vret; +return vret; +END; +$$; + + SET default_tablespace = ''; SET default_with_oids = false; +-- +-- Name: sites; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.sites_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.sites_id_seq OWNED BY demo.sites.id; + + -- -- Name: staff; Type: TABLE; Schema: demo; Owner: - -- @@ -261,18 +929,121 @@ ALTER SEQUENCE demo.staff_id_seq OWNED BY demo.staff.id; -- --- Name: stations; Type: TABLE; Schema: demo; Owner: - +-- Name: stafftimetracks; Type: TABLE; Schema: demo; Owner: - -- -CREATE TABLE demo.stations ( - id integer NOT NULL, - station text, - address text, - plz text, - city text, - country text, - installdate date, - isactive boolean, +CREATE TABLE demo.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.stafftimetracks_id_seq OWNED BY demo.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.staffvacancy_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.staffvacancy_id_seq OWNED BY demo.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: demo; Owner: - +-- + +CREATE SEQUENCE demo.staffvacancyyear_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: demo; Owner: - +-- + +ALTER SEQUENCE demo.staffvacancyyear_id_seq OWNED BY demo.staffvacancyyear.id; + + +-- +-- Name: stations; Type: TABLE; Schema: demo; Owner: - +-- + +CREATE TABLE demo.stations ( + id integer NOT NULL, + station text, + address text, + plz text, + city text, + country text, + installdate date, + isactive boolean, hostname text ); @@ -329,23 +1100,24 @@ ALTER SEQUENCE demo.timetrackuser_id_seq OWNED BY demo.timetrackuser.id; -- --- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - +-- Name: editlog; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE TABLE portanova.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -- --- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.reportperiod_id_seq - AS integer +CREATE SEQUENCE portanova.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -354,35 +1126,30 @@ CREATE SEQUENCE portanova.reportperiod_id_seq -- --- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; +ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; -- --- Name: sites; Type: TABLE; Schema: portanova; Owner: - +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.sites ( +CREATE TABLE portanova.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -- --- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.sites_id_seq +CREATE SEQUENCE portanova.reportperiod_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -392,10 +1159,10 @@ CREATE SEQUENCE portanova.sites_id_seq -- --- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; -- @@ -409,8 +1176,14 @@ CREATE TABLE portanova.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); @@ -442,9 +1215,11 @@ CREATE TABLE portanova.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); @@ -455,7 +1230,9 @@ CREATE TABLE portanova.staffcontract ( CREATE TABLE portanova.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); @@ -500,25 +1277,95 @@ ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffcontract -- --- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: - +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, + id_staff integer, + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval +); + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffreportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffreportperiod_id_seq OWNED BY portanova.staffreportperiod.id; + + +-- +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.stafftimetracks ( +CREATE TABLE portanova.staffreportperioddays ( id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + + +-- +-- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.zzold_staffreportperiodsums ( + id integer NOT NULL, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.stafftimetracks_id_seq +CREATE SEQUENCE portanova.staffreportperiodsums_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -527,10 +1374,35 @@ CREATE SEQUENCE portanova.stafftimetracks_id_seq -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; + + +-- +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; +CREATE TABLE portanova.staffreportperiodweeks ( + id integer NOT NULL, + id_staff integer, + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); -- @@ -540,12 +1412,9 @@ ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetrac CREATE TABLE portanova.staffvacancy ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); @@ -570,24 +1439,30 @@ ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; -- --- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.staffvacancyyear ( - id integer NOT NULL, - id_staff integer, - vyear integer, - hours numeric, - days numeric -); +CREATE SEQUENCE portanova.staffweeksums_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.staffvacancyyear_id_seq - AS integer +ALTER SEQUENCE portanova.staffweeksums_id_seq OWNED BY portanova.staffreportperiodweeks.id; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -596,35 +1471,29 @@ CREATE SEQUENCE portanova.staffvacancyyear_id_seq -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffreportperioddays.id; -- --- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: - +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.staffworkplan ( - id bigint NOT NULL, - id_staff integer, +CREATE TABLE portanova.vacancydays ( + id integer NOT NULL, daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text + vacancyname text ); -- --- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: vacancydays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.staffworkplan_id_seq +CREATE SEQUENCE portanova.vacancydays_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -633,10 +1502,36 @@ CREATE SEQUENCE portanova.staffworkplan_id_seq -- --- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: vacancydays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.vacancydays_id_seq OWNED BY portanova.vacancydays.id; + + +-- +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + + +-- +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; +CREATE VIEW portanova.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; -- @@ -644,11 +1539,12 @@ ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.i -- CREATE VIEW portanova.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM portanova.reportperiod; + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; -- @@ -659,27 +1555,80 @@ CREATE VIEW portanova.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM portanova.staffcontract; -- --- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: - +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: - -- CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (portanova.staffcontract sc - LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + sg.groupcolor, + sc.enddate, + sc.id_workplan, + wp.workplan + FROM ((portanova.staffcontract sc + LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) + LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + ORDER BY sc.startdate DESC, sc.enddate DESC; -- @@ -689,12 +1638,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS CREATE VIEW portanova.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM portanova.staff; @@ -705,7 +1660,8 @@ CREATE VIEW portanova.vw_staffdata AS CREATE VIEW portanova.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -716,7 +1672,8 @@ CREATE VIEW portanova.vw_staffgroupsdata AS CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -725,16 +1682,17 @@ CREATE VIEW portanova.vw_staffgroupslist AS -- CREATE VIEW portanova.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM portanova.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (portanova.staff st + LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; -- @@ -991,29 +1949,146 @@ CREATE VIEW portanova.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 + staffreportperioddays.timepause + FROM portanova.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; +-- +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.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)))) + 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, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((portanova.staffreportperiod srp + LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) + LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) + LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + + +-- +-- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM portanova.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + + -- -- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - -- @@ -1061,9 +2136,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1106,9 +2196,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1151,9 +2256,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1196,9 +2316,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1241,9 +2376,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1286,9 +2436,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, to_char(max( CASE WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1331,320 +2496,271 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + stw.timepause + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; -- --- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffworkplanlist AS - SELECT st.id AS id_staff, +CREATE VIEW portanova.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (portanova.staffreportperioddays swp + JOIN portanova.staff st ON ((swp.id_staff = st.id))); + + +-- +-- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (portanova.staff st + LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); + + +-- +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; + + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM portanova.workplans; + + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char(((((((COALESCE(( CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (portanova.vw_staffworkplan_weekly sp_dwt - LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; - - --- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); - - --- --- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_workplanlist AS - SELECT workplans.id, - workplans.workplan - FROM portanova.workplans; - - --- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM portanova.workplans; - - --- --- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_workplansdata AS - SELECT workplans.id, - workplans.workplan, - to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, - to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, - to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, - to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, - to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, - to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, - to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, - to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, - to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, - to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, - to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, - to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, - to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, - to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, - to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM portanova.workplans; +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (portanova.workplans + JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + + -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- @@ -1665,19 +2781,6 @@ CREATE SEQUENCE portanova.workplans_id_seq ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; --- --- Name: worktypes; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - - -- -- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- @@ -1695,7 +2798,43 @@ CREATE SEQUENCE portanova.worktypes_id_seq -- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; + + +-- +-- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; -- @@ -1710,7 +2849,8 @@ CREATE TABLE public.apps ( id_usergroup integer, icon text, sort integer, - menutype text + menutype text, + id_usergroups json ); @@ -1753,7 +2893,10 @@ CREATE TABLE public.companies ( schemata2 json, email text, socialtype text, - vatvalidated boolean + vatvalidated boolean, + reportperiodunit text, + reportperiodlength integer, + reportperiodstart date ); @@ -1843,41 +2986,6 @@ CREATE SEQUENCE public.mailtemplates_id_seq ALTER SEQUENCE public.mailtemplates_id_seq OWNED BY public.mailtemplates.id; --- --- Name: zzold_members; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.zzold_members ( - id integer NOT NULL, - surname text, - prename text, - phone text, - id_user bigint, - id_company integer, - job text -); - - --- --- Name: members_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.members_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.members_id_seq OWNED BY public.zzold_members.id; - - -- -- Name: sessions; Type: TABLE; Schema: public; Owner: - -- @@ -1944,38 +3052,7 @@ ALTER SEQUENCE public.usergroups_id_seq OWNED BY public.usergroups.id; -- --- Name: zzold_useringroups; Type: TABLE; Schema: public; Owner: - --- - -CREATE TABLE public.zzold_useringroups ( - id integer NOT NULL, - id_user bigint, - id_group bigint -); - - --- --- Name: useringroups_id_seq; Type: SEQUENCE; Schema: public; Owner: - --- - -CREATE SEQUENCE public.useringroups_id_seq - AS integer - START WITH 1 - INCREMENT BY 1 - NO MINVALUE - NO MAXVALUE - CACHE 1; - - --- --- Name: useringroups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: - --- - -ALTER SEQUENCE public.useringroups_id_seq OWNED BY public.zzold_useringroups.id; - - --- --- Name: users; Type: TABLE; Schema: public; Owner: - +-- Name: users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.users ( @@ -1992,7 +3069,8 @@ CREATE TABLE public.users ( prename text, phone text, job text, - id_company integer + id_company integer, + id_usergroup integer ); @@ -2035,7 +3113,10 @@ CREATE VIEW public.vw_companiesdata AS companies.schemata2, companies.email, companies.socialtype, - companies.vatvalidated + companies.vatvalidated, + companies.reportperiodlength, + companies.reportperiodstart, + companies.reportperiodunit FROM public.companies; @@ -2058,456 +3139,3827 @@ CREATE VIEW public.vw_companieslist AS companies.schemata2, companies.email, companies.socialtype, - companies.vatvalidated + companies.vatvalidated, + companies.reportperiodlength, + companies.reportperiodstart, + companies.reportperiodunit FROM public.companies; -- --- Name: vw_schemata; Type: VIEW; Schema: public; Owner: - +-- Name: vw_schemata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_schemata AS + SELECT sct.schema_name AS schemaname, + cp.company + FROM (information_schema.schemata sct + JOIN public.companies cp ON (((sct.schema_name)::text = cp.schemata))) + WHERE (((sct.schema_owner)::text = 'potlu_user'::text) AND ((sct.schema_name)::text <> 'public'::text)); + + +-- +-- Name: vw_staffreportperiodweeks; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_staffreportperiodweeks AS + SELECT staffreportperiodweeks.id, + staffreportperiodweeks.id_staff, + staffreportperiodweeks.id_reportperiod, + staffreportperiodweeks.calyear, + staffreportperiodweeks.calweek, + staffreportperiodweeks.contracthours, + staffreportperiodweeks.workhours, + staffreportperiodweeks.vacancyhours, + staffreportperiodweeks.recuperationhours, + staffreportperiodweeks.diffhours, + staffreportperiodweeks.weekstart, + staffreportperiodweeks.hoursrestbefore, + staffreportperiodweeks.totalhours + FROM portanova.staffreportperiodweeks + ORDER BY staffreportperiodweeks.weekstart; + + +-- +-- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_usergroupslist AS + SELECT usergroups.id, + usergroups.usergroup, + usergroups.isdefault, + usergroups.groupname + FROM public.usergroups; + + +-- +-- Name: vw_userschemaaccess; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userschemaaccess AS + SELECT users.id, + json_array_elements_text(users.schemaaccess) AS schemaaccess + FROM public.users; + + +-- +-- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_usersdata AS + SELECT users.id, + users.userpassword, + users.created, + users.blocked, + users.username, + users.regcode, + users.vcode, + users.schemaaccess, + users.id_usergroup, + users.surname, + users.prename, + users.phone, + users.job, + users.id_company + FROM public.users; + + +-- +-- Name: vw_userslist; Type: VIEW; Schema: public; Owner: - +-- + +CREATE VIEW public.vw_userslist AS +SELECT + NULL::integer AS id, + NULL::boolean AS blocked, + NULL::text AS username, + NULL::text AS schemaaccess, + NULL::text AS surname, + NULL::text AS prename, + NULL::text AS phone, + NULL::text AS job, + NULL::integer AS id_company, + NULL::text AS company, + NULL::text AS groupname, + NULL::integer AS id_usergroup; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.reportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.reportperiod_id_seq OWNED BY test.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.sites_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.sites_id_seq OWNED BY test.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staff_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staff_id_seq OWNED BY test.staff.id; + + +-- +-- Name: staffcontract; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staffcontract ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric, + id_staffgroup integer +); + + +-- +-- Name: staffgroups; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staffgroups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staffgroups_id_seq OWNED BY test.staffgroups.id; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staffperiodbase_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staffperiodbase_id_seq OWNED BY test.staffcontract.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.stafftimetracks_id_seq OWNED BY test.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staffvacancy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staffvacancy_id_seq OWNED BY test.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staffvacancyyear_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staffvacancyyear_id_seq OWNED BY test.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.staffworkplan_id_seq OWNED BY test.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM test.reportperiod; + + +-- +-- Name: vw_staffcontractdata; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffcontractdata AS + SELECT staffcontract.id, + staffcontract.id_staff, + staffcontract.startdate, + staffcontract.monthhours, + staffcontract.weekhours, + staffcontract.id_staffgroup + FROM test.staffcontract; + + +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffcontractlist AS + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.weekhours, + sc.monthhours, + sc.id_staffgroup, + sg.groupname, + sg.groupcolor + FROM (test.staffcontract sc + LEFT JOIN test.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + + +-- +-- Name: vw_staffdata; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffdata AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate + FROM test.staff; + + +-- +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffgroupsdata AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test.staffgroups; + + +-- +-- Name: vw_staffgroupslist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffgroupslist AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test.staffgroups; + + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM test.staff; + + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timepause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timepause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timepause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timepause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timepause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timepause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timepause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, + (sp_dwt.calweek)::integer AS calweek, + sp_dwt.calyear, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (test.vw_staffworkplan_weekly sp_dwt + LEFT JOIN test.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +-- +-- Name: workplans; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM test.workplans; + + +-- +-- Name: vw_workplans; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM test.workplans; + + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: test; Owner: - +-- + +CREATE VIEW test.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM test.workplans; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.workplans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.workplans_id_seq OWNED BY test.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: test; Owner: - +-- + +CREATE TABLE test.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: test; Owner: - +-- + +CREATE SEQUENCE test.worktypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: test; Owner: - +-- + +ALTER SEQUENCE test.worktypes_id_seq OWNED BY test.worktypes.id; + + +-- +-- Name: reportperiod; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.reportperiod ( + id integer NOT NULL, + periodname text, + startdate date, + enddate date +); + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.reportperiod_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.reportperiod_id_seq OWNED BY test2.reportperiod.id; + + +-- +-- Name: sites; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.sites ( + id integer NOT NULL, + sitename text, + address text, + zip text, + city text, + country text, + id_timetracker integer, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now(), + timeclockhost text +); + + +-- +-- Name: sites_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.sites_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.sites_id_seq OWNED BY test2.sites.id; + + +-- +-- Name: staff; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staff ( + id integer NOT NULL, + staffnumber text, + surname text, + prename text, + job text, + birthdate date, + entrydate date, + leavedate date +); + + +-- +-- Name: staff_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staff_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staff_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staff_id_seq OWNED BY test2.staff.id; + + +-- +-- Name: staffcontract; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staffcontract ( + id integer NOT NULL, + id_staff integer, + startdate date, + monthhours numeric, + weekhours numeric, + id_staffgroup integer +); + + +-- +-- Name: staffgroups; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staffgroups ( + id integer NOT NULL, + groupname text, + groupcolor text +); + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staffgroups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffgroups_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staffgroups_id_seq OWNED BY test2.staffgroups.id; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staffperiodbase_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffperiodbase_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staffperiodbase_id_seq OWNED BY test2.staffcontract.id; + + +-- +-- Name: stafftimetracks; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.stafftimetracks ( + id bigint NOT NULL, + id_staff integer, + stamp_in timestamp without time zone, + stamp_out timestamp without time zone, + tracktype text, + created timestamp without time zone DEFAULT now(), + modified timestamp without time zone DEFAULT now() +); + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.stafftimetracks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.stafftimetracks_id_seq OWNED BY test2.stafftimetracks.id; + + +-- +-- Name: staffvacancy; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staffvacancy ( + id integer NOT NULL, + id_staff integer, + startdate date, + enddate date, + vacancytype text, + dayhours time without time zone, + note text, + validated boolean +); + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staffvacancy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancy_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staffvacancy_id_seq OWNED BY test2.staffvacancy.id; + + +-- +-- Name: staffvacancyyear; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staffvacancyyear ( + id integer NOT NULL, + id_staff integer, + vyear integer, + hours numeric, + days numeric +); + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staffvacancyyear_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staffvacancyyear_id_seq OWNED BY test2.staffvacancyyear.id; + + +-- +-- Name: staffworkplan; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.staffworkplan ( + id bigint NOT NULL, + id_staff integer, + daydate date, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + vacancytype text +); + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.staffworkplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.staffworkplan_id_seq OWNED BY test2.staffworkplan.id; + + +-- +-- Name: vw_reportperiodlist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_reportperiodlist AS + SELECT reportperiod.id, + reportperiod.periodname, + reportperiod.startdate, + reportperiod.enddate + FROM test2.reportperiod; + + +-- +-- Name: vw_staffcontractdata; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffcontractdata AS + SELECT staffcontract.id, + staffcontract.id_staff, + staffcontract.startdate, + staffcontract.monthhours, + staffcontract.weekhours, + staffcontract.id_staffgroup + FROM test2.staffcontract; + + +-- +-- Name: vw_staffcontractlist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffcontractlist AS + SELECT sc.id, + sc.id_staff, + sc.startdate, + sc.weekhours, + sc.monthhours, + sc.id_staffgroup, + sg.groupname, + sg.groupcolor + FROM (test2.staffcontract sc + LEFT JOIN test2.staffgroups sg ON ((sc.id_staffgroup = sg.id))); + + +-- +-- Name: vw_staffdata; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffdata AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate + FROM test2.staff; + + +-- +-- Name: vw_staffgroupsdata; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffgroupsdata AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test2.staffgroups; + + +-- +-- Name: vw_staffgroupslist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffgroupslist AS + SELECT staffgroups.id, + staffgroups.groupname, + staffgroups.groupcolor + FROM test2.staffgroups; + + +-- +-- Name: vw_stafflist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_stafflist AS + SELECT staff.id, + staff.staffnumber, + staff.surname, + staff.prename, + staff.job, + staff.birthdate, + staff.entrydate, + staff.leavedate, + ((staff.surname || ' '::text) || staff.prename) AS dspname + FROM test2.staff; + + +-- +-- Name: vw_staffplanned_dayweektotals; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffplanned_dayweektotals AS + SELECT stw2.calweek, + stw2.caldate AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_start2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_end2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_start2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_end2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_start2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_end2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_start2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_end2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_start2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_end2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_start2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_end2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_start2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_end2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_pause, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test2.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffworkplan_weekly AS + SELECT stw2.calweek, + to_char((stw2.caldate)::timestamp with time zone, 'YYYY'::text) AS calyear, + stw2.caldate AS weekbegin, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend1, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timestart2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timeend2, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_timepause, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS mon_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS mon_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS mon_timetotal, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend1, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timestart2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timeend2, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_timepause, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS tue_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS tue_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS tue_timetotal, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend1, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timestart2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timeend2, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_timepause, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS wed_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS wed_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS wed_timetotal, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend1, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timestart2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timeend2, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_timepause, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS thu_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS thu_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS thu_timetotal, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend1, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timestart2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timeend2, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_timepause, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS fri_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS fri_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS fri_timetotal, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend1, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timestart2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timeend2, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_timepause, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sat_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sat_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sat_timetotal, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend1)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend1, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timestart2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timestart2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timeend2)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timeend2, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.timepause)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_timepause, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text) + ELSE NULL::text + END) AS sun_vacancyhours, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype + ELSE NULL::text + END) AS sun_vacancytype, + to_char(max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + ELSE NULL::interval + END), 'HH24:MI'::text) AS sun_timetotal, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal + FROM ( SELECT staffworkplan.daydate, + date_part('week'::text, staffworkplan.daydate) AS calweek, + (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffworkplan.daydate) AS isodow, + staffworkplan.id, + staffworkplan.id_staff, + staffworkplan.timestart1, + staffworkplan.timeend1, + staffworkplan.vacancyhours, + staffworkplan.vacancytype, + CASE + WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) + ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + END AS time1, + staffworkplan.timestart2, + staffworkplan.timeend2, + CASE + WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) + ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + END AS time2, + staffworkplan.timepause + FROM test2.staffworkplan) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + + +-- +-- Name: vw_staffworkplanlist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_staffworkplanlist AS + SELECT st.id AS id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, + (sp_dwt.calweek)::integer AS calweek, + sp_dwt.calyear, + sp_dwt.week_timetotal, + sp_dwt.weekbegin AS weekstart, + date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times_ill, + to_char((((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) + ELSE '00:00:00'::interval + END), 'HH24:MI'::text) AS weekvacancy_times, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes_ill, + (((((( + CASE + WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END + + CASE + WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) + + CASE + WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) + ELSE (0)::numeric + END) AS weekvacancy_minutes, + ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, + sp_dwt.mon_id, + sp_dwt.weekbegin AS mon_date, + ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + sp_dwt.mon_timetotal, + sp_dwt.tue_id, + date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, + ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + sp_dwt.tue_timetotal, + sp_dwt.wed_id, + date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, + ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + sp_dwt.wed_timetotal, + sp_dwt.thu_id, + date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, + ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + sp_dwt.thu_timetotal, + sp_dwt.fri_id, + date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, + ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + sp_dwt.fri_timetotal, + sp_dwt.sat_id, + date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, + ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + sp_dwt.sat_timetotal, + sp_dwt.sun_id, + date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, + ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, + sp_dwt.sun_timetotal + FROM (test2.vw_staffworkplan_weekly sp_dwt + LEFT JOIN test2.staff st ON ((sp_dwt.id_staff = st.id))) + ORDER BY sp_dwt.calweek; + + +-- +-- Name: workplans; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +-- +-- Name: vw_workplanlist; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_workplanlist AS + SELECT workplans.id, + workplans.workplan + FROM test2.workplans; + + +-- +-- Name: vw_workplans; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, + ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, + ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, + ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, + ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, + ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, + ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes + FROM test2.workplans; + + +-- +-- Name: vw_workplansdata; Type: VIEW; Schema: test2; Owner: - +-- + +CREATE VIEW test2.vw_workplansdata AS + SELECT workplans.id, + workplans.workplan, + to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, + to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, + to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, + to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, + to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, + to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, + to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, + to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, + to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, + to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, + to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, + to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, + to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, + to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, + to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, + to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, + to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, + to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, + to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, + to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, + to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, + to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, + to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, + to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, + to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, + to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, + to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, + to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + FROM test2.workplans; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.workplans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: workplans_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.workplans_id_seq OWNED BY test2.workplans.id; + + +-- +-- Name: worktypes; Type: TABLE; Schema: test2; Owner: - +-- + +CREATE TABLE test2.worktypes ( + id integer NOT NULL, + worktype text, + isworktime boolean, + isfreetime boolean, + typecolor text +); + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE; Schema: test2; Owner: - +-- + +CREATE SEQUENCE test2.worktypes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: test2; Owner: - +-- + +ALTER SEQUENCE test2.worktypes_id_seq OWNED BY test2.worktypes.id; + + +-- +-- Name: sites id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.sites ALTER COLUMN id SET DEFAULT nextval('demo.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('demo.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staffvacancy ALTER COLUMN id SET DEFAULT nextval('demo.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('demo.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: stations id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); + + +-- +-- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); + + +-- +-- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffcontract ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); + + +-- +-- Name: staffreportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiod_id_seq'::regclass); + + +-- +-- Name: staffreportperioddays id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: staffreportperiodweeks id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('portanova.staffweeksums_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); + + +-- +-- Name: vacancydays id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('portanova.vacancydays_id_seq'::regclass); + + +-- +-- Name: vacancytypes id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); + + +-- +-- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); + + +-- +-- Name: apps id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); + + +-- +-- Name: companies id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); + + +-- +-- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); + + +-- +-- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); + + +-- +-- Name: users id; Type: DEFAULT; Schema: public; Owner: - +-- + +ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.reportperiod ALTER COLUMN id SET DEFAULT nextval('test.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.sites ALTER COLUMN id SET DEFAULT nextval('test.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staff ALTER COLUMN id SET DEFAULT nextval('test.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staffcontract ALTER COLUMN id SET DEFAULT nextval('test.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staffgroups ALTER COLUMN id SET DEFAULT nextval('test.staffgroups_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('test.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staffvacancy ALTER COLUMN id SET DEFAULT nextval('test.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('test.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.staffworkplan ALTER COLUMN id SET DEFAULT nextval('test.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.workplans ALTER COLUMN id SET DEFAULT nextval('test.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: test; Owner: - +-- + +ALTER TABLE ONLY test.worktypes ALTER COLUMN id SET DEFAULT nextval('test.worktypes_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.reportperiod ALTER COLUMN id SET DEFAULT nextval('test2.reportperiod_id_seq'::regclass); + + +-- +-- Name: sites id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.sites ALTER COLUMN id SET DEFAULT nextval('test2.sites_id_seq'::regclass); + + +-- +-- Name: staff id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staff ALTER COLUMN id SET DEFAULT nextval('test2.staff_id_seq'::regclass); + + +-- +-- Name: staffcontract id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staffcontract ALTER COLUMN id SET DEFAULT nextval('test2.staffperiodbase_id_seq'::regclass); + + +-- +-- Name: staffgroups id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staffgroups ALTER COLUMN id SET DEFAULT nextval('test2.staffgroups_id_seq'::regclass); + + +-- +-- Name: stafftimetracks id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('test2.stafftimetracks_id_seq'::regclass); + + +-- +-- Name: staffvacancy id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staffvacancy ALTER COLUMN id SET DEFAULT nextval('test2.staffvacancy_id_seq'::regclass); + + +-- +-- Name: staffvacancyyear id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('test2.staffvacancyyear_id_seq'::regclass); + + +-- +-- Name: staffworkplan id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.staffworkplan ALTER COLUMN id SET DEFAULT nextval('test2.staffworkplan_id_seq'::regclass); + + +-- +-- Name: workplans id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.workplans ALTER COLUMN id SET DEFAULT nextval('test2.workplans_id_seq'::regclass); + + +-- +-- Name: worktypes id; Type: DEFAULT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.worktypes ALTER COLUMN id SET DEFAULT nextval('test2.worktypes_id_seq'::regclass); + + +-- +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); + + +-- +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); + + +-- +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); + + +-- +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); + + +-- +-- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.stations + ADD CONSTRAINT stations_pkey PRIMARY KEY (id); + + +-- +-- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- + +ALTER TABLE ONLY demo.timetrackuser + ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); + + +-- +-- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_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: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); + + +-- +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); + + +-- +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -CREATE VIEW public.vw_schemata AS - SELECT schemata.schema_name AS schemaname - FROM information_schema.schemata - WHERE ((schemata.schema_owner)::text = 'potlu_user'::text); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); -- --- Name: vw_usergroupslist; Type: VIEW; Schema: public; Owner: - +-- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -CREATE VIEW public.vw_usergroupslist AS - SELECT usergroups.id, - usergroups.usergroup, - usergroups.isdefault, - usergroups.groupname - FROM public.usergroups; +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); -- --- Name: vw_usersdata; Type: VIEW; Schema: public; Owner: - +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -CREATE VIEW public.vw_usersdata AS - SELECT users.id, - users.userpassword, - users.created, - users.blocked, - users.username, - users.regcode, - users.vcode, - users.schemaaccess, - users.id_usergroups, - users.surname, - users.prename, - users.phone, - users.job, - users.id_company - FROM public.users; +ALTER TABLE ONLY portanova.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Name: vw_userslist; Type: VIEW; Schema: public; Owner: - +-- Name: staffreportperiodweeks staffweeksums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -CREATE VIEW public.vw_userslist AS -SELECT - NULL::integer AS id, - NULL::boolean AS blocked, - NULL::text AS username, - NULL::text AS schemaaccess, - NULL::text AS surname, - NULL::text AS prename, - NULL::text AS phone, - NULL::text AS job, - NULL::integer AS id_company, - NULL::text AS company, - NULL::text AS usergroups; +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -- --- Name: staff id; Type: DEFAULT; Schema: demo; Owner: - +-- Name: staffreportperioddays staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY demo.staff ALTER COLUMN id SET DEFAULT nextval('demo.staff_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: stations id; Type: DEFAULT; Schema: demo; Owner: - +-- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY demo.stations ALTER COLUMN id SET DEFAULT nextval('demo.stations_id_seq'::regclass); +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); -- --- Name: timetrackuser id; Type: DEFAULT; Schema: demo; Owner: - +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY demo.timetrackuser ALTER COLUMN id SET DEFAULT nextval('demo.timetrackuser_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT uniq_staffreportperiod_cal UNIQUE (id_reportperiod, id_staff); -- --- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: staffreportperiodweeks uniq_staffweekplan_cal; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT uniq_staffweekplan_cal UNIQUE (id_reportperiod, id_staff, calyear, calweek); -- --- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: staffreportperioddays uniq_staffworplan_staffday; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); -- --- Name: staff id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staff ALTER COLUMN id SET DEFAULT nextval('portanova.staff_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancydays + ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); -- --- Name: staffcontract id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffcontract ALTER COLUMN id SET DEFAULT nextval('portanova.staffperiodbase_id_seq'::regclass); +ALTER TABLE ONLY portanova.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: staffgroups id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('portanova.staffgroups_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancytypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); +ALTER TABLE ONLY public.apps + ADD CONSTRAINT apps_pkey PRIMARY KEY (id); -- --- Name: staffvacancy id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancy_id_seq'::regclass); +ALTER TABLE ONLY public.companies + ADD CONSTRAINT company_pkey PRIMARY KEY (id); -- --- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); +ALTER TABLE ONLY public.maillayouts + ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); -- --- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); +ALTER TABLE ONLY public.mailtemplates + ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); -- --- Name: workplans id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portanova.workplans_id_seq'::regclass); +ALTER TABLE ONLY public.users + ADD CONSTRAINT uniq_username UNIQUE (username); -- --- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +ALTER TABLE ONLY public.usergroups + ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); -- --- Name: apps id; Type: DEFAULT; Schema: public; Owner: - +-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY public.apps ALTER COLUMN id SET DEFAULT nextval('public.apps_id_seq'::regclass); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- --- Name: companies id; Type: DEFAULT; Schema: public; Owner: - +-- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY public.companies ALTER COLUMN id SET DEFAULT nextval('public.companies_id_seq'::regclass); +ALTER TABLE ONLY public.sessions + ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); -- --- Name: maillayouts id; Type: DEFAULT; Schema: public; Owner: - +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.maillayouts ALTER COLUMN id SET DEFAULT nextval('public.maillayouts_id_seq'::regclass); +ALTER TABLE ONLY test.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- --- Name: mailtemplates id; Type: DEFAULT; Schema: public; Owner: - +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.mailtemplates ALTER COLUMN id SET DEFAULT nextval('public.mailtemplates_id_seq'::regclass); +ALTER TABLE ONLY test.sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (id); -- --- Name: sessions id; Type: DEFAULT; Schema: public; Owner: - +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); +ALTER TABLE ONLY test.staff + ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Name: usergroups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.usergroups ALTER COLUMN id SET DEFAULT nextval('public.usergroups_id_seq'::regclass); +ALTER TABLE ONLY test.staffgroups + ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); -- --- Name: users id; Type: DEFAULT; Schema: public; Owner: - +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass); +ALTER TABLE ONLY test.staffcontract + ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -- --- Name: zzold_members id; Type: DEFAULT; Schema: public; Owner: - +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.zzold_members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass); +ALTER TABLE ONLY test.stafftimetracks + ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); -- --- Name: zzold_useringroups id; Type: DEFAULT; Schema: public; Owner: - +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY public.zzold_useringroups ALTER COLUMN id SET DEFAULT nextval('public.useringroups_id_seq'::regclass); +ALTER TABLE ONLY test.staffvacancy + ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY demo.staff - ADD CONSTRAINT staff_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.staffvacancyyear + ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); -- --- Name: stations stations_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY demo.stations - ADD CONSTRAINT stations_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.staffworkplan + ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: timetrackuser timetrackuser_pkey; Type: CONSTRAINT; Schema: demo; Owner: - +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY demo.timetrackuser - ADD CONSTRAINT timetrackuser_pkey PRIMARY KEY (id); +ALTER TABLE ONLY test.workplans + ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: test; Owner: - -- -ALTER TABLE ONLY portanova.reportperiod +ALTER TABLE ONLY test.worktypes + ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); + + +-- +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: test2; Owner: - +-- + +ALTER TABLE ONLY test2.reportperiod ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- --- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: sites sites_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.sites +ALTER TABLE ONLY test2.sites ADD CONSTRAINT sites_pkey PRIMARY KEY (id); -- --- Name: staff staff_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staff staff_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staff +ALTER TABLE ONLY test2.staff ADD CONSTRAINT staff_pkey PRIMARY KEY (id); -- --- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffgroups staffgroups_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staffgroups +ALTER TABLE ONLY test2.staffgroups ADD CONSTRAINT staffgroups_pkey PRIMARY KEY (id); -- --- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffcontract staffperiodbase_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staffcontract +ALTER TABLE ONLY test2.staffcontract ADD CONSTRAINT staffperiodbase_pkey PRIMARY KEY (id); -- --- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.stafftimetracks +ALTER TABLE ONLY test2.stafftimetracks ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); -- --- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffvacancy staffvacancy_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancy +ALTER TABLE ONLY test2.staffvacancy ADD CONSTRAINT staffvacancy_pkey PRIMARY KEY (id); -- --- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancyyear +ALTER TABLE ONLY test2.staffvacancyyear ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); -- --- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.staffworkplan +ALTER TABLE ONLY test2.staffworkplan ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); -- --- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.workplans +ALTER TABLE ONLY test2.workplans ADD CONSTRAINT workplans_pkey PRIMARY KEY (id); -- --- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: test2; Owner: - -- -ALTER TABLE ONLY portanova.worktypes +ALTER TABLE ONLY test2.worktypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: apps apps_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.apps - ADD CONSTRAINT apps_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; -- --- Name: companies company_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: - -- -ALTER TABLE ONLY public.companies - ADD CONSTRAINT company_pkey PRIMARY KEY (id); +CREATE OR REPLACE VIEW public.vw_userslist AS + SELECT us.id, + us.blocked, + us.username, + string_agg(DISTINCT uga.schemaccess, ','::text) AS schemaaccess, + us.surname, + us.prename, + us.phone, + us.job, + us.id_company, + co.company, + ugrp.groupname, + us.id_usergroup + FROM (((public.users us + LEFT JOIN public.companies co ON ((us.id_company = co.id))) + LEFT JOIN ( SELECT users.id AS id_user, + json_array_elements_text(users.schemaaccess) AS schemaccess + FROM public.users) uga ON ((uga.id_user = us.id))) + LEFT JOIN public.usergroups ugrp ON ((ugrp.id = us.id_usergroup))) + GROUP BY us.id, co.id, ugrp.id; -- --- Name: maillayouts maillayouts_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffcontract trg_upd_test_weekhours; Type: TRIGGER; Schema: test; Owner: - -- -ALTER TABLE ONLY public.maillayouts - ADD CONSTRAINT maillayouts_pkey PRIMARY KEY (id); +CREATE TRIGGER trg_upd_test_weekhours BEFORE UPDATE OF weekhours ON test.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); -- --- Name: mailtemplates mailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffcontract trg_upd_test2_weekhours; Type: TRIGGER; Schema: test2; Owner: - -- -ALTER TABLE ONLY public.mailtemplates - ADD CONSTRAINT mailtemplates_pkey PRIMARY KEY (id); +CREATE TRIGGER trg_upd_test2_weekhours BEFORE UPDATE OF weekhours ON test2.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); -- --- Name: zzold_members members_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.zzold_members - ADD CONSTRAINT members_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: users uniq_username; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.users - ADD CONSTRAINT uniq_username UNIQUE (username); +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); -- --- Name: usergroups usergroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.usergroups - ADD CONSTRAINT usergroups_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: zzold_useringroups useringroups_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffreportperiod staffreportperiod_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_fk_1 FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); -- --- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffreportperiodweeks staffweekplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.users - ADD CONSTRAINT users_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk FOREIGN KEY (id_reportperiod) REFERENCES portanova.reportperiod(id); -- --- Name: sessions usersession_pkey; Type: CONSTRAINT; Schema: public; Owner: - +-- Name: staffreportperiodweeks staffweekplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY public.sessions - ADD CONSTRAINT usersession_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweekplan_fk_1 FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: vw_userslist _RETURN; Type: RULE; Schema: public; Owner: - +-- Name: staffreportperioddays staffworkplan_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -CREATE OR REPLACE VIEW public.vw_userslist AS - SELECT us.id, - us.blocked, - us.username, - json_array_elements_text(us.schemaaccess) AS schemaaccess, - us.surname, - us.prename, - us.phone, - us.job, - us.id_company, - co.company, - string_agg(ugrp.groupname, ','::text) AS usergroups - FROM (((public.users us - LEFT JOIN public.companies co ON ((us.id_company = co.id))) - LEFT JOIN ( SELECT users.id AS id_user, - (json_array_elements_text(users.id_usergroups))::integer AS id_usergroup - FROM public.users) ugs ON ((ugs.id_user = us.id))) - LEFT JOIN public.usergroups ugrp ON ((ugrp.id = ugs.id_usergroup))) - GROUP BY us.id, co.id; +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); -- --- Name: staffcontract trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: - +-- Name: staffreportperioddays staffworkplan_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - -- -CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); -- @@ -2527,27 +6979,19 @@ ALTER TABLE ONLY public.mailtemplates -- --- Name: zzold_members members_users_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.zzold_members - ADD CONSTRAINT members_users_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); - - --- --- Name: zzold_useringroups useringroups_idgroup_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: users users_fk; Type: FK CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_idgroup_fkey FOREIGN KEY (id_group) REFERENCES public.usergroups(id); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_fk FOREIGN KEY (id_company) REFERENCES public.companies(id); -- --- Name: zzold_useringroups useringroups_iduser_fkey; Type: FK CONSTRAINT; Schema: public; Owner: - +-- Name: users users_fk_1; Type: FK CONSTRAINT; Schema: public; Owner: - -- -ALTER TABLE ONLY public.zzold_useringroups - ADD CONSTRAINT useringroups_iduser_fkey FOREIGN KEY (id_user) REFERENCES public.users(id); +ALTER TABLE ONLY public.users + ADD CONSTRAINT users_fk_1 FOREIGN KEY (id_usergroup) REFERENCES public.usergroups(id); -- diff --git a/dev/db/potlu_db.portanova.pg.data.sql b/dev/db/potlu_db.portanova.pg.data.sql index c537fd4f..939810db 100644 --- a/dev/db/potlu_db.portanova.pg.data.sql +++ b/dev/db/potlu_db.portanova.pg.data.sql @@ -17,139 +17,5179 @@ SET client_min_messages = warning; SET row_security = off; -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (1, 'Période 1 2020', '2019-12-30', '2020-02-23'); -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (5, 'Periode X', '2019-11-25', '2020-04-05'); -INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate) VALUES (6, 'TEST', '2019-11-25', '2020-01-05'); -- --- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (27, NULL, '2019-12-30', '2020-02-23', NULL); +INSERT INTO portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) VALUES (29, NULL, '2020-02-24', '2020-04-19', 27); -- -- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (1, 'A100', 'NISTRI', 'ANGELA', 'serveuse', '1987-03-27', '2015-06-22', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (4, 'A101', 'JOURDAN', 'JOSIAN', 'serveuse', '1981-01-29', '2015-04-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (5, 'A102', 'ARENGA', 'TERESA', 'serveuse', '1981-06-15', '2015-03-10', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (6, 'A103', 'BARROSO', 'MARIA', 'serveuse', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (7, 'A104', 'STIPA', 'CRISTIAN', 'serveur', '1975-08-08', '2015-11-09', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (15, '5558', 'DEDJA', 'CLAIDIO', 'Barman', '1994-02-24', '2014-11-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (16, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1995-11-05', '2015-10-08', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (8, 'A105', 'LIBERTI', 'RICCARDO', 'serveur', '1990-06-19', '2016-02-13', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (11, 'A106', 'ARMOCIDA', 'Domenico', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (12, 'A107', 'MORTASSI', 'KARIM', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (13, 'A108', 'IRIA', 'FABIO', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (14, 'A109', 'SERGIO', 'SERGIO', 'serveur', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (18, 'A200', NULL, NULL, 'Barman', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (20, 'A110', 'QUATTRONE', 'DEMETRIO', 'Cuisinier', '1950-06-27', '2015-12-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (24, 'A111', 'RAMOS DA SILVA', 'JOHNY', 'cuisinier', '1966-08-25', '2005-05-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (25, 'A112', 'VICINI', 'DAVIDE', NULL, NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (26, 'A113', 'LAMA', 'ANGELO', 'commis de cuisine', '1992-11-20', '2008-07-10', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (30, 'A114', 'ILIC', 'JULIEN', 'apprenti', '1995-04-22', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (31, 'A115', 'SOMNEZ', 'TUNAHAN', NULL, NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (36, 'A117', 'DA LUZ', 'CANDIDA', 'plongeus', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (37, 'A118', 'CRISCIONE', 'EMANUELE', 'resp. de réception', '1981-09-18', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (41, 'A119', 'SONMEZ', 'TUNAHAN', 'apprenti', '1998-06-15', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (42, 'A120', 'IRIA', 'SILVA FABIO', 'apprenti', '1988-06-29', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (43, 'A121', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (44, 'A122', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (45, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (2, '5020', 'MATIAS', 'RAPHAEL', 'serveur', '1975-01-26', '2005-04-19', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (3, '6600', 'ALIF', 'DIDIER', 'serveur', '1968-04-14', '2007-08-14', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (9, '5502', 'COPPOLA', 'CHRISTIAN', 'serveur', '1990-11-25', '2016-01-18', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (21, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', '2005-01-08', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (22, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', '2014-04-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (23, '5503', 'CORONEL', 'SILVINO ROSA', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (27, '7120', 'MELO', 'IVO TIAGO', 'aide-pizzaiolo/commis de cuisine', '1985-06-08', '2013-01-07', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (28, '7600', 'PREZZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', '2012-10-03', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (29, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/commis de cuisine', '1980-02-20', '2015-06-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (32, '5480', 'COIMBRA ABRANTES', ' MARIA', 'commis de cuisine', '1969-09-24', '2006-10-23', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (33, '5540', 'DE BRITO', 'Djela', 'commis de cuisine', '1975-01-15', '1995-07-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (34, '7591', 'PEREIRA GOMES', 'ANTONIA', 'plongeuse', '1987-04-29', '1992-03-15', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (35, '5600', 'DOS SANTOS', 'Alcinda', 'plongeuse', '1960-12-26', '2011-07-05', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (38, '7980', 'SCHMITGEN', 'TANUCCIA', 'Hôtesse d''accueil/serveuse', '1964-01-20', '2010-10-04', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (39, '2701', 'KIEFFER-WEILER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', '2015-07-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (40, '8725', 'YAKOBSON', 'YULIYA', 'hôtesse d''accueil', '1974-04-02', '2011-10-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (10, '8501', 'TAVERNA', 'Greta', 'serveuse', NULL, '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (17, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', '2000-01-01', NULL); -INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) VALUES (19, '1172', 'BUCHICCHIO', 'DONATO ANTONIO', ' chef cuisinier', '1970-10-23', '2000-01-01', NULL); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (132, '5430', 'CAMPANELLA', 'Isamaele', 'commis de cuisine', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (133, '7600', 'PREZIOSA', 'MATTEO', 'pizzaiolo', '1959-03-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (131, '8775', 'ZAKLAN', 'ZORAN', 'cuisinier', '1959-05-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (108, '5502', 'COPPOLA', 'CHRISTIAN', 'chef de salle', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (117, '5514', 'DAGGIANO', 'GREGORIO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (135, '5503', 'CORONEL', 'SILVINO', 'cuisinier', '1964-12-18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (136, '5480', 'COIMBRA DE SOUSA', 'MARIA', 'commis de cuisine', '1969-09-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (111, '5140', 'ARMOCIDA', 'DOMENICO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (103, '1320', 'BRUCCOLERI', 'SARAH', 'attachée de direction', '1984-11-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (104, '3200', 'MULLER', 'RICA', 'secrétaire de direction', '1966-12-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (109, '5020', 'ALIF', 'DIDIER', 'serveur', '1975-01-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (113, '6890', 'LIEBERTI', 'RICCARDO', 'serveur/Barman', '1990-06-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (134, '8091', 'SONMEZ', 'TUNAHAN', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (114, '6600', 'JOURDAN', 'JOSIANE', 'serveuse', '1968-04-14', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (115, '8050', 'JOSE SILVERIO BARROSO', 'MARIA', 'serveuse', '1968-04-05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (118, '6895', 'LIMA PERREIRA', 'CATIA INES', 'serveuse', '1995-06-06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (102, '100', 'PRESTI', 'ADRIANO', 'gérant', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (110, '5550', 'DISTANTE', 'FRANCESCO', 'serveur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (112, '5230', 'SIMEN ABDEL MONEM', 'BEN', 'serveur', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (116, '7052', 'MASTRINI', 'MARCO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (145, '5270', 'BIGOS', 'Grzegorz', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (144, '8070', 'LOPES DA CRUZ', 'SIMARA', 'plongeuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (130, '5695', 'ELKAOUI', 'MOURAD', 'cuisinier', '1973-02-12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (121, '5585', 'DO ROSARIO', 'TIFFANY', 'APPRENTI EN SALLE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (126, '5510', 'D''EUGENIO', 'PIERO', 'chef cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (127, '7750', 'RICCI', 'Gabriele', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (128, '1172', 'BUCHICCHIO', 'DONATO', 'chef cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (119, '7178', 'MORHTASSI', 'KARIM', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (120, '7490', 'PERREIRA', 'ANTONIO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (138, '7965', 'SAVALLI', 'Delia', 'pâtissier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (124, '7941', 'SABBA', 'LEONARD', 'musicien', '1954-08-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (105, '3600', 'PINTO DA COSTA', 'GRACINDA', 'Hôtesse d''accueil/serveuse', '1974-04-02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (106, '2701', 'WEILER KIEFFER', 'LILIANNE', 'hôtesse d''accueil', '1958-04-21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (122, '7595', 'PUGLIESE', 'GIUSEPPE', 'serveur/Barman', '1994-02-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (107, '7950', 'SANTORO', 'DARIO', 'Hôtesse d''accueil/serveuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (123, '8155', 'TAVARES LOPES', 'JOAO', 'serveur/Barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (146, '5506', 'COSTA', 'Giovanni', 'RESPONSABLE DU BAR', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (147, '5697', 'EMBAREK BEN MOHAMED', 'Francoise', 'Responsable experimente', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (148, '6770 ', 'KARATHANASIS', 'Evangelos', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (149, '7130', 'MESSINA', 'Giovanni', 'serveur/barman', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (150, '6876', 'LAMENDOUR', 'JULIEN', 'serveur/barman', '1998-01-27', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (125, '5280', 'BULAKU', 'ENVER', 'concierge/technicien', '1971-02-08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (151, 'AA1', 'Mustermann', 'Max', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 4); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (129, '5250', 'BOUALI', 'AMAR', 'aide-pâtissier/ cuisinier', '1980-02-20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (139, '5540', 'DELL''AVERSANA', 'Shree', 'cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (140, '7099', 'MARZOUK', 'Hassan', 'pizzaiolo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (142, '5600', 'DOS SANTOS MORENO', 'Alcinda', 'plongeuse', '1960-12-26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (143, '5515', 'DA LUZ', 'CANDIDA', 'plongeuse', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (141, NULL, 'IBRAHIMI', 'Blade', 'APPRENTI EN CUISINE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) VALUES (137, '7951', 'SANTORO', 'DAVIDE', 'Cuisinier', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); + + +-- +-- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (1, 'Cuisine', NULL, '["2","4"]', NULL); +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (2, 'Service', NULL, '["2","4"]', NULL); +INSERT INTO portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) VALUES (4, 'Administration', NULL, '["2","4"]', true); -- -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (39, 39, '2015-07-01', 64.8750000000000000, 15, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (40, 40, '2011-10-01', 86.5000000000000000, 20, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (11, 11, '2000-01-01', 129.7500000000000000, 30, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (43, 43, '2000-01-01', 129.7500000000000000, 30, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (6, 6, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (10, 10, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (12, 12, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (13, 13, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (14, 14, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (17, 17, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (19, 19, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (25, 25, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (30, 30, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (31, 31, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (36, 36, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (37, 37, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (41, 41, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (42, 42, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (44, 44, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (45, 45, '2000-01-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (46, 1, '2020-01-06', NULL, 40, 3); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (47, 1, '2020-02-10', NULL, 40, 3); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (48, 1, '2019-12-02', NULL, 40, 3); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (49, 1, '2019-12-02', NULL, 40, 1); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (1, 1, '2015-06-22', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (2, 2, '2005-04-19', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (3, 3, '2007-08-14', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (4, 4, '2015-04-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (5, 5, '2015-03-10', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (7, 7, '2015-11-09', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (8, 8, '2016-02-13', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (9, 9, '2016-01-18', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (15, 15, '2014-11-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (16, 16, '2015-10-08', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (18, 18, '2016-05-30', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (20, 20, '2015-12-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (21, 21, '2005-01-08', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (22, 22, '2014-04-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (23, 23, '2013-01-07', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (24, 24, '2005-05-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (26, 26, '2008-07-10', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (27, 27, '2013-01-07', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (28, 28, '2012-10-03', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (29, 29, '2015-06-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (32, 32, '2006-10-23', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (33, 33, '1995-07-01', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (34, 34, '1992-03-15', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (35, 35, '2011-07-05', 173.0000000000000000, 40, NULL); -INSERT INTO portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) VALUES (38, 38, '2010-10-04', 173.0000000000000000, 40, NULL); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (69, 130, '2005-01-08', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (90, 132, '2020-01-01', 1, 6, '2020-01-15', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (71, 133, '2013-01-07', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (85, 121, '2020-01-01', 2, 6, '2020-07-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (70, 131, '1995-07-01', 1, 6, NULL, 6, '20:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (77, 108, '2020-01-06', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (108, 129, '2019-07-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (82, 117, '2020-05-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (72, 135, '2006-10-23', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (73, 136, '1992-03-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (79, 111, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (87, 126, '2020-01-01', 1, 6, '2019-05-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (88, 127, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (89, 128, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (56, 103, '2014-03-01', 4, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (57, 104, '2015-11-15', 4, 6, NULL, 1, '30:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (60, 109, '2005-04-19', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (61, 113, '2016-05-19', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (91, 134, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (62, 114, '2007-08-14', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (63, 115, '2013-05-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (64, 118, '2018-02-12', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (75, 102, '2020-01-01', 4, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (78, 110, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (80, 112, '2020-01-01', 2, 6, '2020-05-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (81, 116, '2020-01-01', 2, 6, '2019-02-28', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (83, 119, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (84, 120, '2020-01-01', 2, 6, '2019-03-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (93, 138, '2020-01-01', 1, 6, '2020-06-30', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (66, 124, '2016-04-01', 2, 6, '2019-05-31', 1, '12:30:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (99, 145, '2020-01-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (58, 105, '2011-10-01', 2, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (59, 106, '2015-07-01', 2, 6, NULL, 1, '12:30:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (65, 122, '2015-10-15', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (76, 107, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (86, 123, '2020-01-01', 2, 6, '2017-03-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (100, 146, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (101, 147, '2020-01-01', 2, 6, '2020-08-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (102, 148, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (103, 149, '2020-01-01', 2, 6, NULL, 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (104, 150, '2020-01-01', 2, 6, '2019-07-31', 1, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (67, 125, '2003-10-01', 4, 6, NULL, 1, '20:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (107, 151, '2020-02-01', 4, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (105, 129, '2018-11-15', 1, 6, '2019-06-15', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (94, 139, '2020-01-01', 1, 6, '2020-09-30', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (95, 140, '2020-01-01', 1, 6, '2020-01-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (74, 142, '2014-04-15', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (97, 143, '2020-01-01', 1, 6, NULL, 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (98, 144, '2020-01-01', 1, 6, '2020-03-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (96, 141, '2020-01-01', 1, 6, '2022-08-31', 6, '40:00:00'); +INSERT INTO portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) VALUES (92, 137, '2020-01-01', 1, 6, '2019-07-31', 6, '40:00:00'); -- --- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: - +-- + +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1081, 29, 149, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (992, 27, 146, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1082, 29, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1083, 29, 121, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1084, 29, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1085, 29, 119, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1086, 29, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1087, 29, 147, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1088, 29, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1089, 29, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1090, 29, 151, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1091, 29, 138, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1092, 29, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1093, 29, 134, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (993, 27, 132, '88:00:00', '93:20:00', '88:00:00', '00:00:00', '00:00:00', '-05:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (994, 27, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (995, 27, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (996, 27, 112, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (997, 27, 108, '280:00:00', '280:00:00', '280:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (998, 27, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (999, 27, 127, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1000, 27, 149, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1001, 27, 103, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1002, 27, 121, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1003, 27, 125, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1004, 27, 119, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1005, 27, 113, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1006, 27, 147, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1007, 27, 131, '320:00:00', '160:00:00', '320:00:00', '00:00:00', '00:00:00', '160:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1008, 27, 104, '320:00:00', '240:00:00', '320:00:00', '00:00:00', '00:00:00', '80:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1009, 27, 151, '120:00:00', '133:20:00', '120:00:00', '00:00:00', '00:00:00', '-13:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1010, 27, 138, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1011, 27, 105, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1012, 27, 134, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1013, 27, 144, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1014, 27, 102, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1015, 27, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1016, 27, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1017, 27, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1018, 27, 111, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1019, 27, 128, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1020, 27, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1021, 27, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1022, 27, 140, '184:00:00', '186:40:00', '184:00:00', '00:00:00', '00:00:00', '-02:40:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1023, 27, 139, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1024, 27, 141, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1025, 27, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1026, 27, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1027, 27, 110, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1028, 27, 145, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1029, 27, 148, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1030, 27, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (956, 27, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1032, 27, 143, '304:00:00', '313:20:00', '304:00:00', '00:00:00', '00:00:00', '-09:20:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1074, 29, 146, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1075, 29, 115, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1076, 29, 114, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1077, 29, 112, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1078, 29, 108, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1079, 29, 135, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1080, 29, 127, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1094, 29, 144, '216:00:00', '213:20:00', '216:00:00', '00:00:00', '00:00:00', '02:40:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1095, 29, 102, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1096, 29, 109, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1097, 29, 118, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1098, 29, 133, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1099, 29, 111, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1100, 29, 128, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1101, 29, 142, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1102, 29, 136, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1103, 29, 139, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1104, 29, 141, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1105, 29, 122, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1106, 29, 106, '320:00:00', '100:00:00', '320:00:00', '00:00:00', '00:00:00', '220:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1107, 29, 110, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1108, 29, 145, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1109, 29, 148, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1110, 29, 130, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1111, 29, 129, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (1112, 29, 143, '320:00:00', '320:00:00', '320:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); + + +-- +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (1, 'cuisine', NULL); -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (2, 'service', NULL); -INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (3, 'caisse', NULL); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988797, 146, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988798, 146, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988799, 146, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988800, 146, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988801, 146, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988802, 146, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988803, 146, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988804, 146, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988805, 146, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993102, 115, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993103, 115, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993104, 115, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993105, 115, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993106, 115, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993107, 115, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993131, 115, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993132, 115, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993133, 115, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995247, 114, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995248, 114, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995249, 114, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995250, 114, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995251, 114, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995252, 114, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995253, 114, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995254, 114, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995255, 114, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995256, 114, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995257, 114, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995258, 114, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995259, 114, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995260, 114, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995261, 114, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995262, 114, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995263, 114, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995264, 114, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995265, 114, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995266, 114, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079166, 146, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079167, 146, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079168, 146, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079169, 146, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995267, 114, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995268, 114, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995269, 114, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995270, 114, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995271, 114, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995272, 114, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995273, 114, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995274, 114, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995275, 114, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995276, 114, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997427, 112, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997428, 112, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997429, 112, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997430, 112, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997431, 112, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997432, 112, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997433, 112, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997434, 112, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997435, 112, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997436, 112, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997437, 112, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999560, 108, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999561, 108, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999562, 108, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999563, 108, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999564, 108, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999565, 108, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999566, 108, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999567, 108, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999568, 108, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999569, 108, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999570, 108, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999571, 108, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999572, 108, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999573, 108, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079170, 146, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079171, 146, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079172, 146, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079173, 146, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999574, 108, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999575, 108, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999581, 108, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001724, 135, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001725, 135, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001726, 135, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001727, 135, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001728, 135, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001729, 135, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001730, 135, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001731, 135, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001732, 135, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001733, 135, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001734, 135, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001735, 135, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001736, 135, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001737, 135, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001738, 135, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001739, 135, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001740, 135, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001741, 135, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003860, 127, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003861, 127, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003862, 127, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003863, 127, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003864, 127, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003865, 127, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003866, 127, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003867, 127, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003868, 127, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003869, 127, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003870, 127, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003871, 127, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003872, 127, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003873, 127, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006019, 149, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006020, 149, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079174, 146, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079175, 146, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079176, 146, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079177, 146, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006021, 149, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006022, 149, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006023, 149, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006024, 149, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006025, 149, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006026, 149, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006027, 149, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006028, 149, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006029, 149, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006030, 149, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006031, 149, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006032, 149, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006033, 149, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006034, 149, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006035, 149, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006036, 149, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006037, 149, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006038, 149, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006039, 149, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006040, 149, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006041, 149, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006042, 149, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006043, 149, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006044, 149, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006045, 149, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008165, 103, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008166, 103, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008167, 103, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008168, 103, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008169, 103, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008170, 103, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008171, 103, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008172, 103, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008173, 103, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008174, 103, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010312, 121, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079178, 146, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079179, 146, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079180, 146, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079181, 146, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079182, 146, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010313, 121, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010314, 121, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010315, 121, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010316, 121, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010317, 121, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010318, 121, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010319, 121, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010320, 121, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010321, 121, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010322, 121, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010323, 121, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010324, 121, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010325, 121, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010326, 121, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010327, 121, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010328, 121, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010329, 121, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010330, 121, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010331, 121, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010332, 121, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010333, 121, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010334, 121, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010335, 121, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010336, 121, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010337, 121, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010338, 121, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010339, 121, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010340, 121, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010341, 121, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010342, 121, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010343, 121, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010344, 121, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010345, 121, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010346, 121, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010347, 121, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079183, 146, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079184, 146, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079185, 146, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079186, 146, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079187, 146, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010348, 121, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010349, 121, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012469, 125, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012470, 125, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012471, 125, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012472, 125, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012473, 125, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012474, 125, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012475, 125, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012476, 125, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012477, 125, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012478, 125, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014612, 119, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014613, 119, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014614, 119, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014615, 119, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014616, 119, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014617, 119, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014618, 119, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014619, 119, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014620, 119, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014621, 119, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014622, 119, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014623, 119, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014624, 119, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014625, 119, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014626, 119, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014627, 119, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014628, 119, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014629, 119, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014630, 119, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014631, 119, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014632, 119, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014633, 119, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014634, 119, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079188, 146, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079189, 146, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079190, 146, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079191, 146, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014635, 119, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014636, 119, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014637, 119, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014638, 119, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014639, 119, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014640, 119, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014641, 119, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014642, 119, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014643, 119, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014644, 119, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014645, 119, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014646, 119, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014647, 119, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014648, 119, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014649, 119, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014650, 119, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014651, 119, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014652, 119, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014653, 119, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016773, 113, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016774, 113, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016775, 113, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016776, 113, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016777, 113, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016778, 113, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016779, 113, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016780, 113, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016781, 113, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016782, 113, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018917, 147, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018918, 147, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018919, 147, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018920, 147, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018921, 147, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018922, 147, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018923, 147, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079192, 146, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079193, 146, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079194, 146, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079195, 146, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079196, 146, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018924, 147, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018925, 147, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018926, 147, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018927, 147, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018928, 147, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018929, 147, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018930, 147, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018931, 147, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018932, 147, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018933, 147, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018934, 147, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018935, 147, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018936, 147, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018937, 147, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018938, 147, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018939, 147, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018940, 147, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018941, 147, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018942, 147, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018943, 147, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018944, 147, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018945, 147, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018946, 147, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018947, 147, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018948, 147, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018949, 147, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018950, 147, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018951, 147, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018952, 147, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018953, 147, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018954, 147, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021078, 131, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021079, 131, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021080, 131, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021081, 131, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079197, 146, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079198, 146, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079199, 146, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079200, 146, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079201, 146, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021082, 131, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021083, 131, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021107, 131, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021108, 131, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021109, 131, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023223, 104, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023224, 104, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023225, 104, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023226, 104, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023227, 104, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023228, 104, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023229, 104, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023230, 104, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023231, 104, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023232, 104, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023233, 104, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023234, 104, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023235, 104, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023236, 104, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023237, 104, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023238, 104, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023239, 104, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023240, 104, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023241, 104, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023242, 104, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023243, 104, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023244, 104, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023245, 104, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023246, 104, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023247, 104, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023248, 104, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023249, 104, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023250, 104, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023251, 104, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023252, 104, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027530, 138, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079202, 146, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079203, 146, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079204, 146, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079205, 146, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027531, 138, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027532, 138, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027533, 138, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027534, 138, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027535, 138, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027536, 138, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027537, 138, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027538, 138, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027539, 138, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027540, 138, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027541, 138, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027542, 138, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027543, 138, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027544, 138, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027545, 138, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027546, 138, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027547, 138, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027548, 138, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027549, 138, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027550, 138, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027551, 138, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027557, 138, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029700, 105, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029701, 105, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029702, 105, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029703, 105, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029704, 105, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029705, 105, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029706, 105, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029707, 105, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029708, 105, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029709, 105, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029710, 105, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029711, 105, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029712, 105, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029713, 105, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079206, 146, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079207, 146, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079208, 146, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079209, 146, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079210, 146, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029714, 105, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029715, 105, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029716, 105, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029717, 105, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031836, 134, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031837, 134, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031838, 134, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031839, 134, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031840, 134, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031841, 134, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031842, 134, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031843, 134, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031844, 134, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031845, 134, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031846, 134, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031847, 134, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031848, 134, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031849, 134, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033995, 144, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033996, 144, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033997, 144, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033998, 144, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033999, 144, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034000, 144, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034001, 144, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034002, 144, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034003, 144, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034004, 144, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034005, 144, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034006, 144, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034007, 144, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034008, 144, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034009, 144, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034010, 144, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034011, 144, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079211, 146, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079212, 146, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079213, 146, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079214, 146, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079215, 146, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034012, 144, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034013, 144, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034014, 144, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034015, 144, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034016, 144, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034017, 144, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034018, 144, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034019, 144, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034020, 144, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1034021, 144, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036141, 102, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036142, 102, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036143, 102, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036144, 102, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036145, 102, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036146, 102, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036147, 102, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036148, 102, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036149, 102, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036150, 102, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038288, 109, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038289, 109, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038290, 109, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038291, 109, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038292, 109, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038293, 109, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038294, 109, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038295, 109, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038296, 109, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038297, 109, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038298, 109, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038299, 109, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038300, 109, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038301, 109, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038302, 109, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038303, 109, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038304, 109, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079216, 115, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079217, 115, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079218, 115, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079219, 115, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038305, 109, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038306, 109, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038307, 109, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038308, 109, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038309, 109, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038310, 109, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038311, 109, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038312, 109, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038313, 109, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038314, 109, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038315, 109, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038316, 109, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038317, 109, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038318, 109, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038319, 109, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038320, 109, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038321, 109, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038322, 109, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038323, 109, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038324, 109, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038325, 109, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040445, 118, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040446, 118, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040447, 118, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040448, 118, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040449, 118, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040450, 118, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040451, 118, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040452, 118, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040453, 118, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040454, 118, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042588, 133, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042589, 133, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042590, 133, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079220, 115, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079221, 115, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079222, 115, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079223, 115, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079224, 115, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042591, 133, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042592, 133, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042593, 133, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042594, 133, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042595, 133, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042596, 133, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042597, 133, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042598, 133, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042599, 133, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042600, 133, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042601, 133, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042602, 133, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042603, 133, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042604, 133, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042605, 133, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042606, 133, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042607, 133, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042608, 133, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042609, 133, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042610, 133, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042611, 133, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042612, 133, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042613, 133, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042614, 133, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042615, 133, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042616, 133, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042617, 133, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042618, 133, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042619, 133, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042620, 133, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042621, 133, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042622, 133, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042623, 133, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042624, 133, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042625, 133, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079225, 115, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079226, 115, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079227, 115, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079228, 115, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079229, 115, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042626, 133, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042627, 133, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042628, 133, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042629, 133, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044749, 111, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044750, 111, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044751, 111, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044752, 111, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044753, 111, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044754, 111, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044755, 111, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044756, 111, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044757, 111, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044758, 111, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046893, 128, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046894, 128, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046895, 128, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046896, 128, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046897, 128, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046898, 128, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046899, 128, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046900, 128, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046901, 128, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046902, 128, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046903, 128, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046904, 128, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046905, 128, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046906, 128, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046907, 128, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046908, 128, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046909, 128, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046910, 128, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046911, 128, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046912, 128, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046913, 128, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079230, 115, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079231, 115, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079232, 115, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079233, 115, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046914, 128, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046915, 128, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046916, 128, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046917, 128, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046918, 128, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046919, 128, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046920, 128, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046921, 128, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046922, 128, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046923, 128, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046924, 128, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046925, 128, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046926, 128, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046927, 128, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046928, 128, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046929, 128, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046930, 128, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049054, 142, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049055, 142, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049056, 142, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049057, 142, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049058, 142, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049059, 142, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049083, 142, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049084, 142, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049085, 142, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051199, 136, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051200, 136, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051201, 136, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051202, 136, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051203, 136, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051204, 136, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051205, 136, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051206, 136, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051207, 136, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051208, 136, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051209, 136, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079234, 115, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079235, 115, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079236, 115, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079237, 115, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051210, 136, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051211, 136, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051212, 136, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051213, 136, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051214, 136, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051215, 136, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051216, 136, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051217, 136, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051218, 136, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051219, 136, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051220, 136, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051221, 136, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051222, 136, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051223, 136, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051224, 136, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051225, 136, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051226, 136, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051227, 136, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051228, 136, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055506, 139, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055507, 139, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055508, 139, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055509, 139, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055510, 139, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055511, 139, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055512, 139, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055513, 139, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055514, 139, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055515, 139, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055516, 139, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055517, 139, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055518, 139, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055519, 139, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055520, 139, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079238, 115, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079239, 115, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079240, 115, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079241, 115, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079242, 115, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079243, 115, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055521, 139, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055522, 139, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055523, 139, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055524, 139, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055525, 139, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055526, 139, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055527, 139, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055533, 139, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057676, 141, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057677, 141, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057678, 141, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057679, 141, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057680, 141, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057681, 141, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057682, 141, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057683, 141, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057684, 141, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057685, 141, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057686, 141, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057687, 141, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057688, 141, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057689, 141, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057690, 141, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057691, 141, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057692, 141, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057693, 141, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059812, 122, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059813, 122, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059814, 122, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059815, 122, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059816, 122, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059817, 122, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059818, 122, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059819, 122, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059820, 122, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059821, 122, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059822, 122, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079244, 115, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079245, 115, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079246, 115, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079247, 115, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059823, 122, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059824, 122, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059825, 122, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061971, 106, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061972, 106, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061973, 106, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061974, 106, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061975, 106, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061976, 106, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061977, 106, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061978, 106, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061979, 106, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061980, 106, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061981, 106, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061982, 106, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061983, 106, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061984, 106, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061985, 106, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061986, 106, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061987, 106, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061988, 106, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061989, 106, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061990, 106, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061991, 106, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061992, 106, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061993, 106, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061994, 106, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061995, 106, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061996, 106, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061997, 106, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064117, 110, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064118, 110, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064119, 110, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064120, 110, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064121, 110, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064122, 110, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079248, 115, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079249, 115, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079250, 115, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079251, 115, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079252, 115, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064123, 110, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064124, 110, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064125, 110, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064126, 110, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066264, 145, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066265, 145, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066266, 145, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066267, 145, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066268, 145, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066269, 145, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066270, 145, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066271, 145, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066272, 145, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066273, 145, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066274, 145, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066275, 145, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066276, 145, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066277, 145, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066278, 145, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066279, 145, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066280, 145, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066281, 145, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066282, 145, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066283, 145, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066284, 145, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066285, 145, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066286, 145, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066287, 145, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066288, 145, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066289, 145, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066290, 145, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066291, 145, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066292, 145, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066293, 145, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066294, 145, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079253, 115, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079254, 115, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079255, 115, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079256, 115, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066295, 145, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066296, 145, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066297, 145, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066298, 145, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066299, 145, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066300, 145, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066301, 145, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068421, 148, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068422, 148, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068423, 148, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068424, 148, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068425, 148, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068426, 148, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068427, 148, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068428, 148, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068429, 148, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068430, 148, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070564, 130, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070565, 130, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070566, 130, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070567, 130, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070568, 130, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070569, 130, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070570, 130, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070571, 130, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070572, 130, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070573, 130, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070574, 130, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070575, 130, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070576, 130, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070577, 130, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070578, 130, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070579, 130, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070580, 130, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070581, 130, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079257, 115, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079258, 115, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079259, 115, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079260, 115, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079261, 115, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070582, 130, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070583, 130, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070584, 130, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070585, 130, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070586, 130, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070587, 130, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070588, 130, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070589, 130, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070590, 130, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070591, 130, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070592, 130, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070593, 130, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070594, 130, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070595, 130, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070596, 130, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070597, 130, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070598, 130, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070599, 130, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070600, 130, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070601, 130, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070602, 130, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070603, 130, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070604, 130, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070605, 130, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914490, 129, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914491, 129, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914492, 129, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914493, 129, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914494, 129, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914495, 129, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914496, 129, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914497, 129, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914498, 129, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914499, 129, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079262, 115, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079263, 115, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079264, 115, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079265, 115, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079266, 115, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914500, 129, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914501, 129, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914502, 129, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914503, 129, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914504, 129, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914505, 129, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914506, 129, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914507, 129, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914508, 129, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914509, 129, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914510, 129, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914511, 129, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914512, 129, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914513, 129, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914514, 129, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914515, 129, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914516, 129, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074877, 143, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074878, 143, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074879, 143, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074880, 143, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074881, 143, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074882, 143, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074883, 143, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074884, 143, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074885, 143, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074886, 143, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079160, 146, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079161, 146, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079162, 146, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079163, 146, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079164, 146, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079165, 146, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079267, 115, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079268, 115, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079269, 115, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079270, 115, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079271, 115, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079272, 114, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079273, 114, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079274, 114, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079275, 114, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079276, 114, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079277, 114, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079278, 114, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988776, 146, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988777, 146, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988778, 146, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988779, 146, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988780, 146, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988781, 146, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988782, 146, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988783, 146, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988784, 146, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988785, 146, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988786, 146, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988787, 146, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079279, 114, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079280, 114, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079281, 114, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079282, 114, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079283, 114, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988788, 146, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988789, 146, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079284, 114, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988790, 146, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988791, 146, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079285, 114, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988792, 146, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988793, 146, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079286, 114, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988794, 146, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988795, 146, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988796, 146, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988806, 146, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988807, 146, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988808, 146, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988809, 146, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988810, 146, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988811, 146, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988812, 146, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988813, 146, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988814, 146, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988815, 146, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988816, 146, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988817, 146, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988818, 146, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988819, 146, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988820, 146, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988821, 146, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988822, 146, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988823, 146, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988824, 146, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079287, 114, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988825, 146, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988826, 146, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079288, 114, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988827, 146, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988828, 146, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079289, 114, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (988829, 146, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079290, 114, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079291, 114, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079292, 114, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079293, 114, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079294, 114, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079295, 114, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079296, 114, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079297, 114, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079298, 114, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079299, 114, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079300, 114, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079301, 114, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079302, 114, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079303, 114, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079304, 114, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079305, 114, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079306, 114, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079307, 114, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079308, 114, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079309, 114, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079310, 114, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079311, 114, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079312, 114, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079313, 114, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079314, 114, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079315, 114, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079316, 114, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079317, 114, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079318, 114, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079319, 114, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079320, 114, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079321, 114, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079322, 114, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079323, 114, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079324, 114, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079325, 114, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079326, 114, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079327, 114, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079328, 112, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079329, 112, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079330, 112, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079331, 112, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079332, 112, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079333, 112, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079334, 112, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079335, 112, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079336, 112, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079337, 112, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079338, 112, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079339, 112, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079340, 112, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079341, 112, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079342, 112, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079343, 112, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079344, 112, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079345, 112, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079346, 112, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079347, 112, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079348, 112, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079349, 112, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079350, 112, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079351, 112, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079352, 112, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079353, 112, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079354, 112, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079355, 112, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079356, 112, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079357, 112, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079358, 112, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079359, 112, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079360, 112, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079361, 112, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079362, 112, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079363, 112, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079364, 112, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079365, 112, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079366, 112, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079367, 112, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079368, 112, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079369, 112, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079370, 112, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079371, 112, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079372, 112, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079373, 112, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079374, 112, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079375, 112, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079376, 112, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079377, 112, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079378, 112, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079379, 112, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079380, 112, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079381, 112, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079382, 112, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079383, 112, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079384, 108, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079385, 108, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079386, 108, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079387, 108, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079388, 108, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079389, 108, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079390, 108, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079391, 108, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079392, 108, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079393, 108, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079394, 108, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079395, 108, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079396, 108, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079397, 108, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079398, 108, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079399, 108, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079400, 108, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079401, 108, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079402, 108, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079403, 108, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079404, 108, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079405, 108, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079406, 108, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079407, 108, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079408, 108, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079409, 108, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079410, 108, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079411, 108, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079412, 108, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079413, 108, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079414, 108, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079415, 108, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079416, 108, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079417, 108, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079418, 108, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079419, 108, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079420, 108, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079421, 108, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079422, 108, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079423, 108, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079424, 108, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079425, 108, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079426, 108, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079427, 108, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079428, 108, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079429, 108, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079430, 108, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079431, 108, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079432, 108, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079433, 108, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079434, 108, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079435, 108, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079436, 108, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079437, 108, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079438, 108, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079439, 108, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079440, 135, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079441, 135, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079442, 135, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079443, 135, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079444, 135, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079445, 135, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079446, 135, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079447, 135, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079448, 135, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079449, 135, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079450, 135, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079451, 135, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079452, 135, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079453, 135, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079454, 135, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079455, 135, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079456, 135, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079457, 135, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079458, 135, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079459, 135, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079460, 135, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079461, 135, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079462, 135, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079463, 135, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079464, 135, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079465, 135, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079466, 135, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079467, 135, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079468, 135, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079469, 135, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079470, 135, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079471, 135, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079472, 135, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079473, 135, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079474, 135, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079475, 135, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079476, 135, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079477, 135, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079478, 135, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079479, 135, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079480, 135, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079481, 135, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079482, 135, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079483, 135, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079484, 135, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079485, 135, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079486, 135, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079487, 135, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079488, 135, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079489, 135, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079490, 135, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079491, 135, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079492, 135, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079493, 135, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079494, 135, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079495, 135, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079496, 127, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079497, 127, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079498, 127, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079499, 127, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079500, 127, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079501, 127, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079502, 127, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079503, 127, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079504, 127, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079505, 127, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079506, 127, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079507, 127, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079508, 127, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079509, 127, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079510, 127, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079511, 127, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079512, 127, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079513, 127, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079514, 127, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079515, 127, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079516, 127, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079517, 127, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079518, 127, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079519, 127, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079520, 127, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079521, 127, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079522, 127, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079523, 127, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079524, 127, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079525, 127, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079526, 127, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079527, 127, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079528, 127, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079529, 127, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079530, 127, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079531, 127, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079532, 127, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079533, 127, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079534, 127, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079535, 127, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079536, 127, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079537, 127, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079538, 127, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079539, 127, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079540, 127, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079541, 127, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079542, 127, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079543, 127, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079544, 127, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079545, 127, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079546, 127, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079547, 127, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079548, 127, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079549, 127, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079550, 127, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079551, 127, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079552, 149, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079553, 149, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079554, 149, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079555, 149, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079556, 149, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079557, 149, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079558, 149, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079559, 149, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079560, 149, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079561, 149, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079562, 149, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079563, 149, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079564, 149, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079565, 149, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079566, 149, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079567, 149, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079568, 149, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079569, 149, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079570, 149, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079571, 149, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079572, 149, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079573, 149, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079574, 149, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079575, 149, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079576, 149, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079577, 149, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079578, 149, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079579, 149, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079580, 149, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079581, 149, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990928, 132, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990929, 132, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990930, 132, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990931, 132, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990932, 132, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990933, 132, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990934, 132, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990935, 132, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990936, 132, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990937, 132, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990938, 132, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990939, 132, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990940, 132, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990941, 132, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (990942, 132, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079582, 149, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079583, 149, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079584, 149, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079585, 149, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079586, 149, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079587, 149, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079588, 149, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079589, 149, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079590, 149, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079591, 149, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079592, 149, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079593, 149, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079594, 149, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079595, 149, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079596, 149, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079597, 149, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079598, 149, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079599, 149, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079600, 149, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079601, 149, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079602, 149, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079603, 149, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079604, 149, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079605, 149, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079606, 149, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079607, 149, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079608, 103, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079609, 103, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079610, 103, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079611, 103, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079612, 103, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079613, 103, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079614, 103, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079615, 103, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079616, 103, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079617, 103, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079618, 103, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079619, 103, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079620, 103, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079621, 103, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079622, 103, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079623, 103, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079624, 103, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079625, 103, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079626, 103, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079627, 103, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079628, 103, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079629, 103, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079630, 103, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079631, 103, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079632, 103, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079633, 103, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079634, 103, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079635, 103, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079636, 103, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079637, 103, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079638, 103, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079639, 103, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079640, 103, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079641, 103, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079642, 103, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079643, 103, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079644, 103, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079645, 103, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079646, 103, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079647, 103, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079648, 103, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079649, 103, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079650, 103, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079651, 103, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079652, 103, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079653, 103, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079654, 103, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079655, 103, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079656, 103, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079657, 103, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079658, 103, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079659, 103, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079660, 103, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079661, 103, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079662, 103, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079663, 103, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079664, 121, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079665, 121, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079666, 121, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079667, 121, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079668, 121, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079669, 121, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079670, 121, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079671, 121, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079672, 121, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079673, 121, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079674, 121, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079675, 121, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079676, 121, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079677, 121, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079678, 121, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079679, 121, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079680, 121, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079681, 121, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079682, 121, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079683, 121, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079684, 121, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079685, 121, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079686, 121, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079687, 121, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079688, 121, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079689, 121, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079690, 121, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079691, 121, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079692, 121, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079693, 121, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079694, 121, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079695, 121, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079696, 121, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079697, 121, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079698, 121, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079699, 121, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079700, 121, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079701, 121, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079702, 121, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079703, 121, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079704, 121, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079705, 121, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079706, 121, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079707, 121, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079708, 121, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079709, 121, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079710, 121, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079711, 121, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079712, 121, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079713, 121, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079714, 121, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079715, 121, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079716, 121, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079717, 121, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079718, 121, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079719, 121, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079720, 125, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079721, 125, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079722, 125, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079723, 125, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079724, 125, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079725, 125, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079726, 125, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079727, 125, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079728, 125, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079729, 125, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079730, 125, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079731, 125, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079732, 125, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079733, 125, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079734, 125, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079735, 125, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079736, 125, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079737, 125, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079738, 125, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079739, 125, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079740, 125, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079741, 125, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079742, 125, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079743, 125, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079744, 125, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079745, 125, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079746, 125, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079747, 125, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079748, 125, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079749, 125, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079750, 125, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079751, 125, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079752, 125, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079753, 125, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079754, 125, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079755, 125, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079756, 125, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079757, 125, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079758, 125, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079759, 125, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079760, 125, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079761, 125, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079762, 125, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079763, 125, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079764, 125, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079765, 125, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079766, 125, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079767, 125, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079768, 125, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079769, 125, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079770, 125, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079771, 125, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079772, 125, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079773, 125, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079774, 125, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079775, 125, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079776, 119, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079777, 119, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079778, 119, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079779, 119, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079780, 119, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079781, 119, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079782, 119, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079783, 119, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079784, 119, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079785, 119, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079786, 119, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079787, 119, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079788, 119, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079789, 119, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079790, 119, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079791, 119, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079792, 119, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079793, 119, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079794, 119, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079795, 119, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079796, 119, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079797, 119, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079798, 119, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079799, 119, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079800, 119, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079801, 119, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079802, 119, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079803, 119, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079804, 119, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079805, 119, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079806, 119, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079807, 119, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079808, 119, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079809, 119, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079810, 119, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079811, 119, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079812, 119, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079813, 119, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079814, 119, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079815, 119, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079816, 119, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079817, 119, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079818, 119, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079819, 119, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079820, 119, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079821, 119, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079822, 119, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079823, 119, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079824, 119, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079825, 119, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079826, 119, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079827, 119, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079828, 119, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079829, 119, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079830, 119, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079831, 119, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079832, 113, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079833, 113, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079834, 113, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079835, 113, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079836, 113, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079837, 113, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079838, 113, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079839, 113, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079840, 113, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079841, 113, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993134, 115, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993135, 115, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079842, 113, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079843, 113, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079844, 113, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079845, 113, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079846, 113, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079847, 113, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079848, 113, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079849, 113, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079850, 113, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079851, 113, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079852, 113, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079853, 113, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079854, 113, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079855, 113, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079856, 113, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079857, 113, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079858, 113, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079859, 113, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079860, 113, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079861, 113, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079862, 113, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079863, 113, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079864, 113, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079865, 113, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079866, 113, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079867, 113, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079868, 113, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079869, 113, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079870, 113, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079871, 113, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079872, 113, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079873, 113, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079874, 113, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079875, 113, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079876, 113, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079877, 113, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079878, 113, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079879, 113, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079880, 113, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079881, 113, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079882, 113, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079883, 113, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079884, 113, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079885, 113, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079886, 113, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079887, 113, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079888, 147, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993080, 115, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993081, 115, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993082, 115, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993083, 115, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993084, 115, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993085, 115, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993086, 115, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993087, 115, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993088, 115, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993089, 115, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993090, 115, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993091, 115, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993092, 115, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993093, 115, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079889, 147, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079890, 147, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079891, 147, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079892, 147, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993094, 115, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993095, 115, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079893, 147, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993096, 115, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993097, 115, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079894, 147, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993098, 115, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993099, 115, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079895, 147, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993100, 115, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993101, 115, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079896, 147, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993108, 115, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993109, 115, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993110, 115, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993111, 115, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993112, 115, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993113, 115, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993114, 115, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993115, 115, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993116, 115, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993117, 115, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993118, 115, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993119, 115, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993120, 115, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993121, 115, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993122, 115, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079897, 147, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993123, 115, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993124, 115, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079898, 147, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993125, 115, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993126, 115, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079899, 147, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993127, 115, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993128, 115, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079900, 147, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993129, 115, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (993130, 115, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079901, 147, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079902, 147, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079903, 147, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079904, 147, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079905, 147, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079906, 147, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079907, 147, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079908, 147, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079909, 147, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079910, 147, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079911, 147, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079912, 147, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079913, 147, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079914, 147, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079915, 147, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079916, 147, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079917, 147, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079918, 147, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079919, 147, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079920, 147, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079921, 147, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079922, 147, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079923, 147, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079924, 147, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079925, 147, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079926, 147, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079927, 147, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079928, 147, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079929, 147, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079930, 147, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079931, 147, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079932, 147, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079933, 147, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079934, 147, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079935, 147, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079936, 147, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079937, 147, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079938, 147, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079939, 147, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079940, 147, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079941, 147, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079942, 147, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079943, 147, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079944, 131, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079945, 131, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079946, 131, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079947, 131, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079948, 131, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079949, 131, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079950, 131, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079951, 131, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079952, 131, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079953, 131, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079954, 131, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079955, 131, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079956, 131, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079957, 131, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079958, 131, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079959, 131, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079960, 131, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079961, 131, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079962, 131, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079963, 131, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079964, 131, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079965, 131, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079966, 131, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079967, 131, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079968, 131, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079969, 131, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079970, 131, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079971, 131, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079972, 131, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079973, 131, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079974, 131, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079975, 131, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079976, 131, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079977, 131, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079978, 131, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079979, 131, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079980, 131, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079981, 131, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079982, 131, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079983, 131, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079984, 131, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079985, 131, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079986, 131, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079987, 131, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079988, 131, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079989, 131, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079990, 131, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079991, 131, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079992, 131, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079993, 131, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079994, 131, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079995, 131, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079996, 131, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079997, 131, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079998, 131, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1079999, 131, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080000, 104, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080001, 104, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080002, 104, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080003, 104, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080004, 104, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080005, 104, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080006, 104, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080007, 104, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080008, 104, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080009, 104, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080010, 104, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080011, 104, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080012, 104, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080013, 104, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080014, 104, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080015, 104, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080016, 104, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080017, 104, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080018, 104, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080019, 104, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080020, 104, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080021, 104, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080022, 104, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080023, 104, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080024, 104, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080025, 104, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080026, 104, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080027, 104, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080028, 104, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080029, 104, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080030, 104, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080031, 104, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080032, 104, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080033, 104, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080034, 104, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080035, 104, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080036, 104, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080037, 104, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080038, 104, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080039, 104, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080040, 104, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080041, 104, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080042, 104, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080043, 104, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080044, 104, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080045, 104, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080046, 104, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080047, 104, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080048, 104, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080049, 104, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080050, 104, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080051, 104, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080052, 104, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080053, 104, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080054, 104, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080055, 104, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080056, 151, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080057, 151, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080058, 151, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080059, 151, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080060, 151, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080061, 151, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080062, 151, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080063, 151, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080064, 151, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080065, 151, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080066, 151, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080067, 151, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080068, 151, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080069, 151, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080070, 151, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080071, 151, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080072, 151, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080073, 151, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080074, 151, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080075, 151, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080076, 151, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080077, 151, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080078, 151, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080079, 151, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080080, 151, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080081, 151, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080082, 151, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080083, 151, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080084, 151, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080085, 151, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080086, 151, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080087, 151, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080088, 151, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080089, 151, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080090, 151, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080091, 151, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080092, 151, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080093, 151, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080094, 151, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080095, 151, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080096, 151, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080097, 151, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080098, 151, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080099, 151, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080100, 151, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080101, 151, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080102, 151, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080103, 151, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080104, 151, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080105, 151, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080106, 151, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080107, 151, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080108, 151, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080109, 151, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080110, 151, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080111, 151, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080112, 138, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080113, 138, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080114, 138, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080115, 138, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080116, 138, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080117, 138, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080118, 138, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080119, 138, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080120, 138, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080121, 138, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080122, 138, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080123, 138, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080124, 138, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080125, 138, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080126, 138, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080127, 138, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080128, 138, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080129, 138, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080130, 138, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080131, 138, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080132, 138, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080133, 138, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080134, 138, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080135, 138, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080136, 138, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080137, 138, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080138, 138, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080139, 138, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080140, 138, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080141, 138, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080142, 138, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080143, 138, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080144, 138, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080145, 138, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080146, 138, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080147, 138, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080148, 138, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080149, 138, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080150, 138, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080151, 138, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080152, 138, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080153, 138, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080154, 138, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080155, 138, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080156, 138, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080157, 138, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080158, 138, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080159, 138, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080160, 138, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080161, 138, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080162, 138, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080163, 138, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080164, 138, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080165, 138, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080166, 138, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080167, 138, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080168, 105, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080169, 105, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080170, 105, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080171, 105, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080172, 105, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080173, 105, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080174, 105, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080175, 105, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080176, 105, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080177, 105, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080178, 105, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080179, 105, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080180, 105, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080181, 105, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080182, 105, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080183, 105, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080184, 105, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080185, 105, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080186, 105, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080187, 105, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080188, 105, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080189, 105, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080190, 105, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080191, 105, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080192, 105, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080193, 105, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080194, 105, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080195, 105, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080196, 105, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080197, 105, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080198, 105, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080199, 105, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080200, 105, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080201, 105, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080202, 105, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080203, 105, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080204, 105, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080205, 105, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080206, 105, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080207, 105, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080208, 105, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080209, 105, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080210, 105, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080211, 105, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080212, 105, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080213, 105, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080214, 105, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080215, 105, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080216, 105, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080217, 105, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080218, 105, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080219, 105, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080220, 105, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080221, 105, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080222, 105, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080223, 105, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080224, 134, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080225, 134, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080226, 134, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080227, 134, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080228, 134, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080229, 134, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080230, 134, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080231, 134, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080232, 134, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080233, 134, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080234, 134, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080235, 134, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080236, 134, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080237, 134, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080238, 134, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080239, 134, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080240, 134, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080241, 134, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080242, 134, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080243, 134, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080244, 134, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080245, 134, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080246, 134, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080247, 134, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080248, 134, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080249, 134, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080250, 134, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080251, 134, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080252, 134, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080253, 134, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080254, 134, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080255, 134, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080256, 134, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080257, 134, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080258, 134, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080259, 134, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080260, 134, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080261, 134, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080262, 134, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080263, 134, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080264, 134, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080265, 134, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080266, 134, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080267, 134, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080268, 134, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080269, 134, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080270, 134, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080271, 134, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080272, 134, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080273, 134, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080274, 134, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080275, 134, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080276, 134, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080277, 134, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080278, 134, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080279, 134, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080280, 144, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080281, 144, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080282, 144, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080283, 144, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080284, 144, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080285, 144, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080286, 144, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080287, 144, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080288, 144, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080289, 144, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080290, 144, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080291, 144, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080292, 144, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080293, 144, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080294, 144, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080295, 144, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080296, 144, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080297, 144, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080298, 144, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080299, 144, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080300, 144, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080301, 144, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080302, 144, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080303, 144, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080304, 144, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080305, 144, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080306, 144, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080307, 144, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080308, 144, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080309, 144, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080310, 144, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080311, 144, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080312, 144, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080313, 144, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080314, 144, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080315, 144, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080316, 144, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080317, 102, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080318, 102, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080319, 102, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080320, 102, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080321, 102, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080322, 102, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080323, 102, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080324, 102, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080325, 102, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080326, 102, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080327, 102, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080328, 102, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080329, 102, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080330, 102, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080331, 102, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080332, 102, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080333, 102, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080334, 102, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080335, 102, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080336, 102, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080337, 102, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080338, 102, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080339, 102, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080340, 102, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080341, 102, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080342, 102, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080343, 102, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080344, 102, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080345, 102, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080346, 102, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080347, 102, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080348, 102, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080349, 102, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080350, 102, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080351, 102, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080352, 102, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080353, 102, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080354, 102, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080355, 102, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080356, 102, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080357, 102, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080358, 102, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080359, 102, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080360, 102, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080361, 102, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080362, 102, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080363, 102, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080364, 102, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080365, 102, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080366, 102, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080367, 102, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080368, 102, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080369, 102, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080370, 102, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080371, 102, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080372, 102, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080373, 109, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080374, 109, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080375, 109, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080376, 109, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080377, 109, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080378, 109, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080379, 109, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080380, 109, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080381, 109, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080382, 109, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080383, 109, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080384, 109, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080385, 109, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080386, 109, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080387, 109, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080388, 109, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080389, 109, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080390, 109, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080391, 109, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080392, 109, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080393, 109, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080394, 109, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080395, 109, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080396, 109, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080397, 109, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080398, 109, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080399, 109, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080400, 109, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080401, 109, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080402, 109, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080403, 109, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080404, 109, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080405, 109, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080406, 109, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080407, 109, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080408, 109, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080409, 109, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080410, 109, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080411, 109, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080412, 109, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080413, 109, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080414, 109, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080415, 109, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080416, 109, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080417, 109, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080418, 109, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080419, 109, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080420, 109, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080421, 109, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080422, 109, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080423, 109, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080424, 109, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080425, 109, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080426, 109, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080427, 109, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080428, 109, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080429, 118, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080430, 118, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080431, 118, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080432, 118, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080433, 118, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080434, 118, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080435, 118, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080436, 118, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080437, 118, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080438, 118, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080439, 118, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080440, 118, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080441, 118, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080442, 118, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080443, 118, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080444, 118, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080445, 118, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080446, 118, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080447, 118, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080448, 118, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080449, 118, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080450, 118, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995286, 114, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995287, 114, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080451, 118, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080452, 118, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080453, 118, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080454, 118, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080455, 118, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080456, 118, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080457, 118, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080458, 118, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080459, 118, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080460, 118, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080461, 118, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080462, 118, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080463, 118, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080464, 118, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080465, 118, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080466, 118, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080467, 118, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080468, 118, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080469, 118, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080470, 118, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080471, 118, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080472, 118, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080473, 118, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080474, 118, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080475, 118, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080476, 118, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080477, 118, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080478, 118, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080479, 118, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080480, 118, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080481, 118, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080482, 118, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080483, 118, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080484, 118, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080485, 133, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080486, 133, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080487, 133, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080488, 133, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080489, 133, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080490, 133, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080491, 133, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080492, 133, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080493, 133, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080494, 133, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080495, 133, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080496, 133, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080497, 133, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080498, 133, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080499, 133, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080500, 133, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080501, 133, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080502, 133, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080503, 133, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080504, 133, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080505, 133, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080506, 133, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080507, 133, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080508, 133, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080509, 133, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080510, 133, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080511, 133, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080512, 133, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080513, 133, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080514, 133, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080515, 133, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080516, 133, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080517, 133, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080518, 133, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080519, 133, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080520, 133, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080521, 133, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080522, 133, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080523, 133, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080524, 133, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080525, 133, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080526, 133, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080527, 133, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080528, 133, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080529, 133, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080530, 133, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080531, 133, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080532, 133, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080533, 133, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080534, 133, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080535, 133, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080536, 133, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080537, 133, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080538, 133, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080539, 133, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080540, 133, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080541, 111, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080542, 111, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080543, 111, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080544, 111, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080545, 111, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080546, 111, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080547, 111, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080548, 111, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080549, 111, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080550, 111, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080551, 111, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080552, 111, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080553, 111, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080554, 111, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080555, 111, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080556, 111, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080557, 111, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080558, 111, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080559, 111, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080560, 111, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080561, 111, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080562, 111, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080563, 111, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080564, 111, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080565, 111, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080566, 111, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080567, 111, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080568, 111, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080569, 111, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080570, 111, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080571, 111, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080572, 111, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080573, 111, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080574, 111, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080575, 111, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080576, 111, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080577, 111, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080578, 111, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080579, 111, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080580, 111, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080581, 111, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080582, 111, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080583, 111, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080584, 111, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080585, 111, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080586, 111, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080587, 111, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080588, 111, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080589, 111, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080590, 111, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080591, 111, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080592, 111, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080593, 111, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080594, 111, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080595, 111, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080596, 111, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080597, 128, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080598, 128, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080599, 128, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995232, 114, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080600, 128, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995233, 114, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995234, 114, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080601, 128, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995235, 114, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080602, 128, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080603, 128, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080604, 128, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080605, 128, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080606, 128, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080607, 128, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080608, 128, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080609, 128, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080610, 128, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080611, 128, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080612, 128, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080613, 128, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995236, 114, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995237, 114, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080614, 128, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995238, 114, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995239, 114, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080615, 128, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995240, 114, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995241, 114, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080616, 128, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995242, 114, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995243, 114, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080617, 128, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995244, 114, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995245, 114, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995246, 114, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995277, 114, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080618, 128, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995278, 114, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995279, 114, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080619, 128, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995280, 114, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995281, 114, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080620, 128, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995282, 114, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995283, 114, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080621, 128, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995284, 114, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (995285, 114, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080622, 128, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080623, 128, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080624, 128, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080625, 128, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080626, 128, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080627, 128, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080628, 128, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080629, 128, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080630, 128, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080631, 128, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080632, 128, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080633, 128, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080634, 128, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080635, 128, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080636, 128, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080637, 128, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080638, 128, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080639, 128, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080640, 128, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080641, 128, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080642, 128, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080643, 128, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080644, 128, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080645, 128, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080646, 128, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080647, 128, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080648, 128, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080649, 128, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080650, 128, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080651, 128, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080652, 128, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080653, 142, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080654, 142, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080655, 142, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080656, 142, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080657, 142, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080658, 142, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080659, 142, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080660, 142, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080661, 142, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080662, 142, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080663, 142, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080664, 142, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080665, 142, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080666, 142, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080667, 142, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080668, 142, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080669, 142, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080670, 142, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080671, 142, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080672, 142, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080673, 142, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080674, 142, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080675, 142, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080676, 142, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080677, 142, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080678, 142, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080679, 142, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080680, 142, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080681, 142, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080682, 142, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080683, 142, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080684, 142, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080685, 142, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080686, 142, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080687, 142, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080688, 142, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080689, 142, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080690, 142, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080691, 142, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080692, 142, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080693, 142, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080694, 142, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080695, 142, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080696, 142, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080697, 142, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080698, 142, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080699, 142, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080700, 142, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080701, 142, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080702, 142, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080703, 142, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080704, 142, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080705, 142, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080706, 142, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080707, 142, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080708, 142, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080709, 136, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080710, 136, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080711, 136, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080712, 136, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080713, 136, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080714, 136, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080715, 136, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080716, 136, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080717, 136, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080718, 136, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080719, 136, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080720, 136, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080721, 136, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080722, 136, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080723, 136, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080724, 136, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080725, 136, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080726, 136, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080727, 136, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080728, 136, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080729, 136, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080730, 136, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080731, 136, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080732, 136, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080733, 136, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080734, 136, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080735, 136, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080736, 136, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080737, 136, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080738, 136, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080739, 136, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080740, 136, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080741, 136, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080742, 136, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080743, 136, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080744, 136, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080745, 136, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080746, 136, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080747, 136, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080748, 136, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080749, 136, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080750, 136, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080751, 136, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080752, 136, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080753, 136, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080754, 136, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080755, 136, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080756, 136, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080757, 136, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080758, 136, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080759, 136, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080760, 136, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080761, 136, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080762, 136, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080763, 136, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080764, 136, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080765, 139, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080766, 139, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080767, 139, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080768, 139, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080769, 139, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080770, 139, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080771, 139, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080772, 139, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080773, 139, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080774, 139, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080775, 139, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080776, 139, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080777, 139, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080778, 139, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080779, 139, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080780, 139, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080781, 139, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080782, 139, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080783, 139, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080784, 139, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080785, 139, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080786, 139, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080787, 139, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080788, 139, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080789, 139, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080790, 139, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080791, 139, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080792, 139, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080793, 139, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080794, 139, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080795, 139, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080796, 139, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080797, 139, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080798, 139, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080799, 139, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080800, 139, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080801, 139, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080802, 139, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080803, 139, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080804, 139, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080805, 139, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080806, 139, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080807, 139, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080808, 139, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080809, 139, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080810, 139, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080811, 139, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080812, 139, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080813, 139, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080814, 139, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080815, 139, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080816, 139, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080817, 139, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080818, 139, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080819, 139, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080820, 139, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080821, 141, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080822, 141, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080823, 141, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080824, 141, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080825, 141, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080826, 141, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080827, 141, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080828, 141, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080829, 141, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080830, 141, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080831, 141, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080832, 141, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080833, 141, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080834, 141, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080835, 141, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080836, 141, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080837, 141, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080838, 141, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080839, 141, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080840, 141, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080841, 141, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080842, 141, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080843, 141, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080844, 141, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080845, 141, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080846, 141, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080847, 141, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080848, 141, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080849, 141, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080850, 141, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080851, 141, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080852, 141, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080853, 141, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080854, 141, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080855, 141, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080856, 141, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080857, 141, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080858, 141, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080859, 141, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080860, 141, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080861, 141, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080862, 141, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080863, 141, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080864, 141, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080865, 141, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080866, 141, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080867, 141, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080868, 141, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080869, 141, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080870, 141, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080871, 141, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080872, 141, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080873, 141, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080874, 141, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080875, 141, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080876, 141, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080877, 122, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080878, 122, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080879, 122, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080880, 122, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080881, 122, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080882, 122, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080883, 122, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080884, 122, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080885, 122, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080886, 122, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080887, 122, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080888, 122, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080889, 122, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080890, 122, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080891, 122, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080892, 122, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080893, 122, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080894, 122, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080895, 122, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080896, 122, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080897, 122, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080898, 122, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080899, 122, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080900, 122, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080901, 122, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080902, 122, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080903, 122, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080904, 122, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080905, 122, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080906, 122, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080907, 122, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080908, 122, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080909, 122, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080910, 122, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080911, 122, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080912, 122, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080913, 122, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080914, 122, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080915, 122, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080916, 122, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080917, 122, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080918, 122, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080919, 122, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080920, 122, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080921, 122, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080922, 122, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080923, 122, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080924, 122, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080925, 122, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080926, 122, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080927, 122, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080928, 122, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080929, 122, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080930, 122, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080931, 122, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080932, 122, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080933, 106, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080934, 106, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080935, 106, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080936, 106, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080937, 106, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080938, 106, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080939, 106, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080940, 106, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080941, 106, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080942, 106, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080943, 106, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080944, 106, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080945, 106, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080946, 106, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080947, 106, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080948, 106, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080949, 106, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080950, 106, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080951, 106, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080952, 106, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080953, 106, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080954, 106, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080955, 106, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080956, 106, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080957, 106, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080958, 106, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080959, 106, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080960, 106, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080961, 106, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080962, 106, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080963, 106, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080964, 106, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080965, 106, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080966, 106, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080967, 106, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080968, 106, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080969, 106, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080970, 106, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080971, 106, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080972, 106, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080973, 106, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080974, 106, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080975, 106, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080976, 106, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080977, 106, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080978, 106, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080979, 106, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080980, 106, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080981, 106, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080982, 106, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080983, 106, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080984, 106, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080985, 106, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080986, 106, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080987, 106, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080988, 106, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080989, 110, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080990, 110, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080991, 110, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080992, 110, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080993, 110, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080994, 110, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080995, 110, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080996, 110, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080997, 110, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080998, 110, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1080999, 110, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081000, 110, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081001, 110, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081002, 110, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081003, 110, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081004, 110, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081005, 110, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081006, 110, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081007, 110, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081008, 110, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081009, 110, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081010, 110, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081011, 110, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081012, 110, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081013, 110, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081014, 110, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081015, 110, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081016, 110, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081017, 110, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081018, 110, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081019, 110, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081020, 110, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081021, 110, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081022, 110, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081023, 110, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081024, 110, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081025, 110, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081026, 110, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081027, 110, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081028, 110, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081029, 110, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081030, 110, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081031, 110, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081032, 110, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081033, 110, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081034, 110, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081035, 110, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081036, 110, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081037, 110, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081038, 110, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081039, 110, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081040, 110, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081041, 110, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081042, 110, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081043, 110, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081044, 110, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081045, 145, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081046, 145, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081047, 145, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081048, 145, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081049, 145, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081050, 145, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081051, 145, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081052, 145, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081053, 145, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081054, 145, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081055, 145, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081056, 145, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081057, 145, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081058, 145, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081059, 145, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081060, 145, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081061, 145, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081062, 145, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081063, 145, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081064, 145, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081065, 145, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081066, 145, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081067, 145, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081068, 145, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081069, 145, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081070, 145, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081071, 145, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081072, 145, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081073, 145, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081074, 145, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081075, 145, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081076, 145, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081077, 145, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081078, 145, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081079, 145, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081080, 145, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081081, 145, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081082, 145, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081083, 145, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081084, 145, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081085, 145, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081086, 145, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081087, 145, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081088, 145, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081089, 145, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081090, 145, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081091, 145, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081092, 145, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081093, 145, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081094, 145, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081095, 145, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081096, 145, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081097, 145, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081098, 145, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081099, 145, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081100, 145, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081101, 148, '2020-02-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081102, 148, '2020-02-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081103, 148, '2020-02-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081104, 148, '2020-02-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081105, 148, '2020-02-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081106, 148, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081107, 148, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081108, 148, '2020-03-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081109, 148, '2020-03-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081110, 148, '2020-03-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081111, 148, '2020-03-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081112, 148, '2020-03-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081113, 148, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081114, 148, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081115, 148, '2020-03-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081116, 148, '2020-03-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081117, 148, '2020-03-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081118, 148, '2020-03-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081119, 148, '2020-03-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081120, 148, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081121, 148, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081122, 148, '2020-03-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081123, 148, '2020-03-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081124, 148, '2020-03-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081125, 148, '2020-03-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081126, 148, '2020-03-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081127, 148, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081128, 148, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081129, 148, '2020-03-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081130, 148, '2020-03-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081131, 148, '2020-03-25', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081132, 148, '2020-03-26', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081133, 148, '2020-03-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081134, 148, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081135, 148, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081136, 148, '2020-03-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081137, 148, '2020-03-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081138, 148, '2020-04-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081139, 148, '2020-04-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081140, 148, '2020-04-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081141, 148, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081142, 148, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081143, 148, '2020-04-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081144, 148, '2020-04-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081145, 148, '2020-04-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081146, 148, '2020-04-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081147, 148, '2020-04-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081148, 148, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081149, 148, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081150, 148, '2020-04-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081151, 148, '2020-04-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081152, 148, '2020-04-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081153, 148, '2020-04-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081154, 148, '2020-04-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081155, 148, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081156, 148, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081157, 130, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081158, 130, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081159, 130, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081160, 130, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081161, 130, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081162, 130, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081163, 130, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081164, 130, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081165, 130, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081166, 130, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081167, 130, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081168, 130, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081169, 130, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081170, 130, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081171, 130, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081172, 130, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081173, 130, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081174, 130, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081175, 130, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081176, 130, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081177, 130, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081178, 130, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081179, 130, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081180, 130, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081181, 130, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081182, 130, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081183, 130, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081184, 130, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081185, 130, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081186, 130, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081187, 130, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081188, 130, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081189, 130, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081190, 130, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081191, 130, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081192, 130, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081193, 130, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081194, 130, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081195, 130, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081196, 130, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081197, 130, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081198, 130, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081199, 130, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081200, 130, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081201, 130, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081202, 130, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081203, 130, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081204, 130, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081205, 130, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081206, 130, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081207, 130, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081208, 130, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081209, 130, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081210, 130, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081211, 130, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081212, 130, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081213, 129, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081214, 129, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081215, 129, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081216, 129, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081217, 129, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081218, 129, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081219, 129, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081220, 129, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081221, 129, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081222, 129, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081223, 129, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081224, 129, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081225, 129, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081226, 129, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081227, 129, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081228, 129, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081229, 129, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081230, 129, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081231, 129, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081232, 129, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081233, 129, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081234, 129, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081235, 129, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081236, 129, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081237, 129, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081238, 129, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081239, 129, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081240, 129, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081241, 129, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081242, 129, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081243, 129, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081244, 129, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081245, 129, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081246, 129, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081247, 129, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081248, 129, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081249, 129, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081250, 129, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081251, 129, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081252, 129, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081253, 129, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081254, 129, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081255, 129, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081256, 129, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081257, 129, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081258, 129, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081259, 129, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081260, 129, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081261, 129, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081262, 129, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081263, 129, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081264, 129, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081265, 129, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081266, 129, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081267, 129, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081268, 129, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081269, 143, '2020-02-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081270, 143, '2020-02-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081271, 143, '2020-02-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081272, 143, '2020-02-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081273, 143, '2020-02-28', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081274, 143, '2020-02-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081275, 143, '2020-03-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081276, 143, '2020-03-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081277, 143, '2020-03-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081278, 143, '2020-03-04', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081279, 143, '2020-03-05', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081280, 143, '2020-03-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081281, 143, '2020-03-07', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081282, 143, '2020-03-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081283, 143, '2020-03-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081284, 143, '2020-03-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081285, 143, '2020-03-11', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081286, 143, '2020-03-12', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081287, 143, '2020-03-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081288, 143, '2020-03-14', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081289, 143, '2020-03-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081290, 143, '2020-03-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081291, 143, '2020-03-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081292, 143, '2020-03-18', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081293, 143, '2020-03-19', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081294, 143, '2020-03-20', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081295, 143, '2020-03-21', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081296, 143, '2020-03-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081297, 143, '2020-03-23', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081298, 143, '2020-03-24', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081299, 143, '2020-03-25', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081300, 143, '2020-03-26', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081301, 143, '2020-03-27', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081302, 143, '2020-03-28', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081303, 143, '2020-03-29', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081304, 143, '2020-03-30', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081305, 143, '2020-03-31', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081306, 143, '2020-04-01', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081307, 143, '2020-04-02', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081308, 143, '2020-04-03', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081309, 143, '2020-04-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081310, 143, '2020-04-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081311, 143, '2020-04-06', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081312, 143, '2020-04-07', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081313, 143, '2020-04-08', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081314, 143, '2020-04-09', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081315, 143, '2020-04-10', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081316, 143, '2020-04-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997384, 112, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997385, 112, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081317, 143, '2020-04-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997386, 112, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997387, 112, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081318, 143, '2020-04-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997388, 112, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997389, 112, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081319, 143, '2020-04-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997390, 112, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997391, 112, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081320, 143, '2020-04-15', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997392, 112, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997393, 112, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081321, 143, '2020-04-16', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997394, 112, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997395, 112, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081322, 143, '2020-04-17', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 29, '08:00:00', NULL, '03:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997396, 112, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997397, 112, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081323, 143, '2020-04-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997398, 112, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997399, 112, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1081324, 143, '2020-04-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 29, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997400, 112, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997401, 112, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997402, 112, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997403, 112, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997404, 112, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997405, 112, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997406, 112, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997407, 112, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997408, 112, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997409, 112, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997410, 112, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997411, 112, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997412, 112, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997413, 112, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997414, 112, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997415, 112, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997416, 112, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997417, 112, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997418, 112, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997419, 112, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997420, 112, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997421, 112, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997422, 112, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997423, 112, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997424, 112, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997425, 112, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (997426, 112, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999541, 108, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999542, 108, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999543, 108, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999544, 108, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999545, 108, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999546, 108, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999547, 108, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999548, 108, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999549, 108, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999550, 108, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999551, 108, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999552, 108, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999553, 108, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999554, 108, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999555, 108, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999556, 108, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999557, 108, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999558, 108, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999559, 108, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999576, 108, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999577, 108, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999578, 108, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999579, 108, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999580, 108, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999582, 108, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999583, 108, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999584, 108, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999585, 108, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999586, 108, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999587, 108, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999588, 108, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (999589, 108, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001742, 135, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001743, 135, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001688, 135, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001689, 135, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001690, 135, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001691, 135, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001692, 135, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001693, 135, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001694, 135, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001695, 135, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001696, 135, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001697, 135, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001698, 135, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001699, 135, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001700, 135, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001701, 135, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001702, 135, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001703, 135, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001704, 135, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001705, 135, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001706, 135, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001707, 135, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001708, 135, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001709, 135, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001710, 135, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001711, 135, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001712, 135, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001713, 135, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001714, 135, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001715, 135, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001716, 135, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001717, 135, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001718, 135, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001719, 135, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001720, 135, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001721, 135, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001722, 135, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1001723, 135, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003840, 127, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003841, 127, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003842, 127, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003843, 127, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003844, 127, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003845, 127, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003846, 127, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003847, 127, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003848, 127, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003849, 127, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003850, 127, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003851, 127, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003852, 127, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003853, 127, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003854, 127, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003855, 127, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003856, 127, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003857, 127, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003858, 127, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003859, 127, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003874, 127, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003875, 127, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003876, 127, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003877, 127, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003878, 127, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003879, 127, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003880, 127, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003881, 127, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003882, 127, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003883, 127, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003884, 127, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003885, 127, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003886, 127, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003887, 127, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003888, 127, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003889, 127, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003890, 127, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003891, 127, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003892, 127, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1003893, 127, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005992, 149, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005993, 149, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005994, 149, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005995, 149, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005996, 149, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005997, 149, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005998, 149, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1005999, 149, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006000, 149, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006001, 149, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006002, 149, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006003, 149, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006004, 149, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006005, 149, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006006, 149, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006007, 149, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006008, 149, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006009, 149, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006010, 149, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006011, 149, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006012, 149, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006013, 149, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006014, 149, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006015, 149, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006016, 149, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006017, 149, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1006018, 149, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008198, 103, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008199, 103, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008144, 103, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008145, 103, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008146, 103, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008147, 103, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008148, 103, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008149, 103, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008150, 103, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008151, 103, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008152, 103, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008153, 103, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008154, 103, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008155, 103, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008156, 103, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008157, 103, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008158, 103, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008159, 103, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008160, 103, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008161, 103, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008162, 103, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008163, 103, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008164, 103, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008175, 103, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008176, 103, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008177, 103, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008178, 103, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008179, 103, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008180, 103, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008181, 103, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008182, 103, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008183, 103, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008184, 103, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008185, 103, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008186, 103, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008187, 103, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008188, 103, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008189, 103, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008190, 103, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008191, 103, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008192, 103, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008193, 103, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008194, 103, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008195, 103, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008196, 103, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1008197, 103, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010296, 121, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010297, 121, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010298, 121, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010299, 121, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010300, 121, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010301, 121, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010302, 121, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010303, 121, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010304, 121, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010305, 121, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010306, 121, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010307, 121, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010308, 121, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010309, 121, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010310, 121, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1010311, 121, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012502, 125, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012503, 125, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012448, 125, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012449, 125, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012450, 125, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012451, 125, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012452, 125, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012453, 125, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012454, 125, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012455, 125, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012456, 125, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012457, 125, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012458, 125, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012459, 125, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012460, 125, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012461, 125, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012462, 125, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012463, 125, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012464, 125, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012465, 125, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012466, 125, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012467, 125, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012468, 125, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012479, 125, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012480, 125, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012481, 125, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012482, 125, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012483, 125, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012484, 125, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012485, 125, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012486, 125, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012487, 125, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012488, 125, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012489, 125, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012490, 125, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012491, 125, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012492, 125, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012493, 125, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012494, 125, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012495, 125, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012496, 125, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012497, 125, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012498, 125, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012499, 125, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012500, 125, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1012501, 125, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014600, 119, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014601, 119, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014602, 119, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014603, 119, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014604, 119, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014605, 119, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014606, 119, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014607, 119, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014608, 119, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014609, 119, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014610, 119, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1014611, 119, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016806, 113, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016807, 113, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016752, 113, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016753, 113, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016754, 113, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016755, 113, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016756, 113, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016757, 113, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016758, 113, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016759, 113, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016760, 113, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016761, 113, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016762, 113, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016763, 113, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016764, 113, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016765, 113, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016766, 113, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016767, 113, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016768, 113, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016769, 113, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016770, 113, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016771, 113, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016772, 113, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016783, 113, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016784, 113, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016785, 113, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016786, 113, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016787, 113, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016788, 113, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016789, 113, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016790, 113, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016791, 113, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016792, 113, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016793, 113, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016794, 113, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016795, 113, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016796, 113, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016797, 113, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016798, 113, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016799, 113, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016800, 113, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016801, 113, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016802, 113, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016803, 113, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016804, 113, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1016805, 113, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018904, 147, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018905, 147, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018906, 147, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018907, 147, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018908, 147, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018909, 147, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018910, 147, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018911, 147, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018912, 147, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018913, 147, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018914, 147, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018915, 147, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018916, 147, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018955, 147, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018956, 147, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1018957, 147, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021110, 131, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021111, 131, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021056, 131, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021057, 131, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021058, 131, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021059, 131, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021060, 131, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021061, 131, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021062, 131, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021063, 131, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021064, 131, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021065, 131, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021066, 131, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021067, 131, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021068, 131, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021069, 131, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021070, 131, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021071, 131, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021072, 131, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021073, 131, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021074, 131, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021075, 131, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021076, 131, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021077, 131, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021084, 131, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021085, 131, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021086, 131, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021087, 131, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021088, 131, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021089, 131, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021090, 131, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021091, 131, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021092, 131, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021093, 131, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021094, 131, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021095, 131, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021096, 131, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021097, 131, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021098, 131, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021099, 131, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021100, 131, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021101, 131, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021102, 131, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '03:20:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021103, 131, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021104, 131, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021105, 131, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1021106, 131, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '03:20:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023262, 104, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023263, 104, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023208, 104, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023209, 104, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023210, 104, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023211, 104, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023212, 104, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023213, 104, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023214, 104, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023215, 104, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023216, 104, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023217, 104, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023218, 104, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023219, 104, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023220, 104, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023221, 104, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023222, 104, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023253, 104, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023254, 104, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023255, 104, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023256, 104, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023257, 104, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023258, 104, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023259, 104, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '05:00:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023260, 104, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1023261, 104, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '05:00:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025391, 151, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025392, 151, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025393, 151, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025394, 151, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025395, 151, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025396, 151, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025397, 151, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025398, 151, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025399, 151, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025400, 151, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025401, 151, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025402, 151, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025403, 151, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025404, 151, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025405, 151, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025406, 151, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025407, 151, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025408, 151, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025409, 151, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025410, 151, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025411, 151, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025412, 151, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1025413, 151, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027512, 138, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027513, 138, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027514, 138, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027515, 138, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027516, 138, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027517, 138, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027518, 138, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027519, 138, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027520, 138, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027521, 138, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027522, 138, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027523, 138, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027524, 138, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027525, 138, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027526, 138, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027527, 138, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027528, 138, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027529, 138, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027552, 138, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027553, 138, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027554, 138, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027555, 138, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027556, 138, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027558, 138, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027559, 138, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027560, 138, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027561, 138, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027562, 138, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027563, 138, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027564, 138, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1027565, 138, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029718, 105, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029719, 105, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029664, 105, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029665, 105, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029666, 105, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029667, 105, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029668, 105, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029669, 105, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029670, 105, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029671, 105, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029672, 105, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029673, 105, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029674, 105, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029675, 105, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029676, 105, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029677, 105, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029678, 105, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029679, 105, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029680, 105, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029681, 105, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029682, 105, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029683, 105, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029684, 105, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029685, 105, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029686, 105, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029687, 105, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029688, 105, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029689, 105, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029690, 105, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029691, 105, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029692, 105, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029693, 105, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029694, 105, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029695, 105, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029696, 105, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029697, 105, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029698, 105, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1029699, 105, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031816, 134, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031817, 134, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031818, 134, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031819, 134, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031820, 134, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031821, 134, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031822, 134, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031823, 134, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031824, 134, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031825, 134, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031826, 134, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031827, 134, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031828, 134, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031829, 134, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031830, 134, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031831, 134, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031832, 134, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031833, 134, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031834, 134, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031835, 134, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031850, 134, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031851, 134, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031852, 134, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031853, 134, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031854, 134, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031855, 134, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031856, 134, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031857, 134, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031858, 134, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031859, 134, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031860, 134, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031861, 134, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031862, 134, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031863, 134, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031864, 134, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031865, 134, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031866, 134, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031867, 134, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031868, 134, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1031869, 134, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033968, 144, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033969, 144, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033970, 144, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033971, 144, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033972, 144, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033973, 144, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033974, 144, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033975, 144, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033976, 144, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033977, 144, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033978, 144, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033979, 144, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033980, 144, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033981, 144, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033982, 144, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033983, 144, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033984, 144, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033985, 144, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033986, 144, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033987, 144, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033988, 144, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033989, 144, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033990, 144, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033991, 144, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033992, 144, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033993, 144, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1033994, 144, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036120, 102, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036121, 102, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036122, 102, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036123, 102, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036124, 102, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036125, 102, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036126, 102, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036127, 102, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036128, 102, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036129, 102, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036130, 102, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036131, 102, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036132, 102, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036133, 102, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036134, 102, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036135, 102, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036136, 102, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036137, 102, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036138, 102, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036139, 102, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036140, 102, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036151, 102, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036152, 102, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036153, 102, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036154, 102, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036155, 102, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036156, 102, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036157, 102, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036158, 102, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036159, 102, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036160, 102, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036161, 102, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036162, 102, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036163, 102, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036164, 102, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036165, 102, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036166, 102, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036167, 102, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036168, 102, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036169, 102, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036170, 102, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036171, 102, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036172, 102, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1036173, 102, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038326, 109, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038327, 109, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038272, 109, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038273, 109, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038274, 109, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038275, 109, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038276, 109, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038277, 109, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038278, 109, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038279, 109, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038280, 109, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038281, 109, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038282, 109, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038283, 109, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038284, 109, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038285, 109, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038286, 109, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1038287, 109, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040478, 118, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040479, 118, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040424, 118, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040425, 118, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040426, 118, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040427, 118, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040428, 118, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040429, 118, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040430, 118, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040431, 118, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040432, 118, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040433, 118, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040434, 118, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040435, 118, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040436, 118, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040437, 118, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040438, 118, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040439, 118, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040440, 118, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040441, 118, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040442, 118, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040443, 118, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040444, 118, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040455, 118, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040456, 118, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040457, 118, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040458, 118, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040459, 118, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040460, 118, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040461, 118, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040462, 118, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040463, 118, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040464, 118, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040465, 118, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040466, 118, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040467, 118, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040468, 118, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040469, 118, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040470, 118, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040471, 118, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040472, 118, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040473, 118, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040474, 118, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040475, 118, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040476, 118, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1040477, 118, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042630, 133, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042631, 133, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042576, 133, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042577, 133, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042578, 133, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042579, 133, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042580, 133, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042581, 133, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042582, 133, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042583, 133, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042584, 133, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042585, 133, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042586, 133, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1042587, 133, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044728, 111, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044729, 111, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044730, 111, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044731, 111, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044732, 111, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044733, 111, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044734, 111, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044735, 111, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044736, 111, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044737, 111, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044738, 111, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044739, 111, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044740, 111, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044741, 111, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044742, 111, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044743, 111, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044744, 111, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044745, 111, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044746, 111, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044747, 111, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044748, 111, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044759, 111, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044760, 111, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044761, 111, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044762, 111, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044763, 111, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044764, 111, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044765, 111, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044766, 111, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044767, 111, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044768, 111, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044769, 111, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044770, 111, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044771, 111, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044772, 111, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044773, 111, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044774, 111, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044775, 111, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044776, 111, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044777, 111, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044778, 111, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044779, 111, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044780, 111, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1044781, 111, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046880, 128, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046881, 128, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046882, 128, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046883, 128, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046884, 128, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046885, 128, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046886, 128, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046887, 128, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046888, 128, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046889, 128, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046890, 128, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046891, 128, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046892, 128, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046931, 128, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046932, 128, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1046933, 128, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049086, 142, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049087, 142, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049032, 142, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049033, 142, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049034, 142, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049035, 142, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049036, 142, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049037, 142, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049038, 142, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049039, 142, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049040, 142, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049041, 142, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049042, 142, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049043, 142, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049044, 142, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049045, 142, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049046, 142, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049047, 142, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049048, 142, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049049, 142, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049050, 142, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049051, 142, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049052, 142, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049053, 142, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049060, 142, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049061, 142, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049062, 142, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049063, 142, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049064, 142, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049065, 142, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049066, 142, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049067, 142, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049068, 142, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049069, 142, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049070, 142, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049071, 142, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049072, 142, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049073, 142, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049074, 142, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049075, 142, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049076, 142, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049077, 142, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049078, 142, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049079, 142, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049080, 142, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049081, 142, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1049082, 142, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051238, 136, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051239, 136, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051184, 136, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051185, 136, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051186, 136, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051187, 136, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051188, 136, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051189, 136, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051190, 136, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051191, 136, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051192, 136, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051193, 136, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051194, 136, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051195, 136, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051196, 136, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051197, 136, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051198, 136, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051229, 136, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051230, 136, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051231, 136, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051232, 136, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051233, 136, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051234, 136, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051235, 136, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051236, 136, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1051237, 136, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053336, 140, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053337, 140, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053338, 140, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053339, 140, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053340, 140, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053341, 140, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053342, 140, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053343, 140, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053344, 140, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053345, 140, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053346, 140, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053347, 140, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053348, 140, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053349, 140, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053350, 140, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053351, 140, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053352, 140, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053353, 140, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053354, 140, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053355, 140, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053356, 140, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053357, 140, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053358, 140, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053359, 140, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053360, 140, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053361, 140, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053362, 140, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053363, 140, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053364, 140, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053365, 140, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1053366, 140, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055488, 139, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055489, 139, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055490, 139, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055491, 139, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055492, 139, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055493, 139, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055494, 139, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055495, 139, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055496, 139, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055497, 139, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055498, 139, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055499, 139, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055500, 139, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055501, 139, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055502, 139, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055503, 139, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055504, 139, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055505, 139, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055528, 139, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055529, 139, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055530, 139, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055531, 139, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055532, 139, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055534, 139, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055535, 139, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055536, 139, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055537, 139, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055538, 139, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055539, 139, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055540, 139, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1055541, 139, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057640, 141, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057641, 141, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057642, 141, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057643, 141, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057644, 141, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057645, 141, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057646, 141, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057647, 141, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057648, 141, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057649, 141, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057650, 141, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057651, 141, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057652, 141, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057653, 141, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057654, 141, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057655, 141, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057656, 141, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057657, 141, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057658, 141, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057659, 141, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057660, 141, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057661, 141, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057662, 141, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057663, 141, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057664, 141, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057665, 141, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057666, 141, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057667, 141, '2020-01-28', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057668, 141, '2020-01-29', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057669, 141, '2020-01-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057670, 141, '2020-01-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057671, 141, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057672, 141, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057673, 141, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057674, 141, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1057675, 141, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059846, 122, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059847, 122, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059792, 122, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059793, 122, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059794, 122, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059795, 122, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059796, 122, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059797, 122, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059798, 122, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059799, 122, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059800, 122, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059801, 122, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059802, 122, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059803, 122, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059804, 122, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059805, 122, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059806, 122, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059807, 122, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059808, 122, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059809, 122, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059810, 122, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059811, 122, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059826, 122, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059827, 122, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059828, 122, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059829, 122, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059830, 122, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059831, 122, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059832, 122, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059833, 122, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059834, 122, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059835, 122, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059836, 122, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059837, 122, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059838, 122, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059839, 122, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059840, 122, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059841, 122, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059842, 122, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059843, 122, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059844, 122, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1059845, 122, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061998, 106, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061999, 106, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061944, 106, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061945, 106, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061946, 106, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061947, 106, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061948, 106, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061949, 106, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061950, 106, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061951, 106, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061952, 106, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061953, 106, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061954, 106, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061955, 106, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061956, 106, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061957, 106, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061958, 106, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061959, 106, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061960, 106, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061961, 106, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061962, 106, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061963, 106, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061964, 106, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061965, 106, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061966, 106, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061967, 106, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061968, 106, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061969, 106, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '02:05:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1061970, 106, '2020-01-27', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '02:05:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064096, 110, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064097, 110, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064098, 110, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064099, 110, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064100, 110, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064101, 110, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064102, 110, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064103, 110, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064104, 110, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064105, 110, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064106, 110, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064107, 110, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064108, 110, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064109, 110, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064110, 110, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064111, 110, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064112, 110, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064113, 110, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064114, 110, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064115, 110, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064116, 110, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064127, 110, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064128, 110, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064129, 110, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064130, 110, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064131, 110, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064132, 110, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064133, 110, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064134, 110, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064135, 110, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064136, 110, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064137, 110, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064138, 110, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064139, 110, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064140, 110, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064141, 110, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064142, 110, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064143, 110, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064144, 110, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064145, 110, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064146, 110, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064147, 110, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064148, 110, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1064149, 110, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066248, 145, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066249, 145, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066250, 145, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066251, 145, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066252, 145, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066253, 145, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066254, 145, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066255, 145, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066256, 145, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066257, 145, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066258, 145, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066259, 145, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066260, 145, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066261, 145, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066262, 145, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1066263, 145, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068400, 148, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068401, 148, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068402, 148, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068403, 148, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068404, 148, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068405, 148, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068406, 148, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068407, 148, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068408, 148, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068409, 148, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068410, 148, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068411, 148, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068412, 148, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068413, 148, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068414, 148, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068415, 148, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068416, 148, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068417, 148, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068418, 148, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068419, 148, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068420, 148, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068431, 148, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068432, 148, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068433, 148, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068434, 148, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068435, 148, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068436, 148, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068437, 148, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068438, 148, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068439, 148, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068440, 148, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068441, 148, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068442, 148, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068443, 148, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068444, 148, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068445, 148, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068446, 148, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068447, 148, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068448, 148, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068449, 148, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068450, 148, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068451, 148, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068452, 148, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1068453, 148, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070606, 130, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070607, 130, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070552, 130, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070553, 130, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070554, 130, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070555, 130, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070556, 130, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070557, 130, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070558, 130, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070559, 130, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070560, 130, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070561, 130, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070562, 130, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1070563, 130, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914518, 129, '2019-12-30', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914519, 129, '2019-12-31', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914464, 129, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914465, 129, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914466, 129, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914467, 129, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914468, 129, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914469, 129, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914470, 129, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914471, 129, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914472, 129, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914473, 129, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914474, 129, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914475, 129, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914476, 129, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914477, 129, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914478, 129, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914481, 129, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914479, 129, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914480, 129, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914482, 129, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914483, 129, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914484, 129, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914485, 129, '2020-01-22', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914486, 129, '2020-01-23', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914487, 129, '2020-01-24', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914488, 129, '2020-01-25', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914489, 129, '2020-01-26', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (914517, 129, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074856, 143, '2020-01-01', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074857, 143, '2020-01-02', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074858, 143, '2020-01-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074859, 143, '2020-01-04', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074860, 143, '2020-01-05', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074861, 143, '2020-01-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074862, 143, '2020-01-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074863, 143, '2020-01-08', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074864, 143, '2020-01-09', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074865, 143, '2020-01-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074866, 143, '2020-01-11', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074867, 143, '2020-01-12', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074868, 143, '2020-01-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074869, 143, '2020-01-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074870, 143, '2020-01-15', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074871, 143, '2020-01-16', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074872, 143, '2020-01-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074873, 143, '2020-01-18', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074874, 143, '2020-01-19', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074875, 143, '2020-01-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074876, 143, '2020-01-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074887, 143, '2020-02-01', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074888, 143, '2020-02-02', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074889, 143, '2020-02-03', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074890, 143, '2020-02-04', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074891, 143, '2020-02-05', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074892, 143, '2020-02-06', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074893, 143, '2020-02-07', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074894, 143, '2020-02-08', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074895, 143, '2020-02-09', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074896, 143, '2020-02-10', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074897, 143, '2020-02-11', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074898, 143, '2020-02-12', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074899, 143, '2020-02-13', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074900, 143, '2020-02-14', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074901, 143, '2020-02-15', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074902, 143, '2020-02-16', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074903, 143, '2020-02-17', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074904, 143, '2020-02-18', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074905, 143, '2020-02-19', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074906, 143, '2020-02-20', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074907, 143, '2020-02-21', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '00:00:00', '06:40:00', NULL, NULL, NULL, '08:00:00', '00:00:00', NULL, 27, '08:00:00', NULL, '01:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074908, 143, '2020-02-22', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); +INSERT INTO portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) VALUES (1074909, 143, '2020-02-23', NULL, NULL, NULL, NULL, NULL, '00:00:00', '06:40:00', NULL, NULL, NULL, '00:00:00', '00:00:00', NULL, 27, '00:00:00', NULL, '00:00:00'); -- --- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: - -- +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5512, 146, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5513, 146, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5514, 146, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5515, 146, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5516, 146, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5517, 146, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5518, 146, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5519, 146, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5520, 132, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5521, 132, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5522, 132, 27, 2020, 3, '20:00:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '04:00:00', '2020-01-13', NULL, '24:00:00', 3, 3, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6142, 146, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6143, 146, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6144, 146, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6145, 146, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6146, 146, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6147, 146, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6148, 146, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6149, 146, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5523, 115, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5524, 115, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5525, 115, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5526, 115, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5527, 115, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5528, 115, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5529, 115, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5530, 115, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6150, 115, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6151, 115, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5531, 114, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5532, 114, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5533, 114, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5534, 114, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6152, 115, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6153, 115, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6154, 115, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6155, 115, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6156, 115, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6157, 115, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5535, 114, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5536, 114, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5537, 114, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5538, 114, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5539, 112, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5540, 112, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5541, 112, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5542, 112, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5543, 112, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5544, 112, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5545, 112, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5546, 112, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6158, 114, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6159, 114, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6160, 114, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6161, 114, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6162, 114, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6163, 114, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6164, 114, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6165, 114, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5547, 108, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5548, 108, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5549, 108, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5550, 108, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5551, 108, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5552, 108, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5553, 108, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6166, 112, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6167, 112, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6168, 112, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6169, 112, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6170, 112, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6171, 112, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6172, 112, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6173, 112, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5554, 135, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5555, 135, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5556, 135, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5557, 135, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5558, 135, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5559, 135, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5560, 135, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5561, 135, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6174, 108, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6175, 108, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5562, 127, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5563, 127, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5564, 127, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5565, 127, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5566, 127, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5567, 127, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6176, 108, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6177, 108, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6178, 108, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6179, 108, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6180, 108, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6181, 108, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5568, 127, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5569, 127, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5570, 149, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5571, 149, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5572, 149, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5573, 149, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5574, 149, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5575, 149, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5576, 149, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5577, 149, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6182, 135, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6183, 135, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6184, 135, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6185, 135, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6186, 135, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6187, 135, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5578, 103, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5579, 103, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5580, 103, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6188, 135, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5581, 103, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5582, 103, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5583, 103, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5584, 103, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5585, 103, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6189, 135, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5586, 121, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5587, 121, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6190, 127, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6191, 127, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6192, 127, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6193, 127, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6194, 127, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6195, 127, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6196, 127, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6197, 127, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5588, 121, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5589, 121, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5590, 121, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5591, 121, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5592, 121, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5593, 121, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5594, 125, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5595, 125, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5596, 125, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5597, 125, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5598, 125, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5599, 125, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6198, 149, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6199, 149, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6200, 149, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6201, 149, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6202, 149, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5600, 125, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6203, 149, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6204, 149, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6205, 149, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5601, 125, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5602, 119, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5603, 119, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5604, 119, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5605, 119, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5606, 119, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5607, 119, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5608, 119, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5609, 119, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6206, 103, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6207, 103, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6208, 103, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6209, 103, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6210, 103, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6211, 103, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6212, 103, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6213, 103, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5610, 113, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5611, 113, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5612, 113, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5613, 113, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5614, 113, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5615, 113, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5616, 113, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5617, 113, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5618, 147, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5619, 147, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6214, 121, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6215, 121, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6216, 121, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6217, 121, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6218, 121, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6219, 121, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6220, 121, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6221, 121, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5620, 147, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5621, 147, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5622, 147, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5623, 147, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5624, 147, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5625, 147, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5626, 131, 27, 2020, 1, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5627, 131, 27, 2020, 2, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5628, 131, 27, 2020, 3, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5629, 131, 27, 2020, 4, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5630, 131, 27, 2020, 5, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5631, 131, 27, 2020, 6, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5632, 131, 27, 2020, 7, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6222, 125, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6223, 125, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6224, 125, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6225, 125, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6226, 125, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6227, 125, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6228, 125, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6229, 125, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5633, 131, 27, 2020, 8, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5634, 104, 27, 2020, 1, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5635, 104, 27, 2020, 2, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5636, 104, 27, 2020, 3, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5637, 104, 27, 2020, 4, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5638, 104, 27, 2020, 5, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5639, 104, 27, 2020, 6, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5640, 104, 27, 2020, 7, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5641, 104, 27, 2020, 8, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5642, 151, 27, 2020, 5, '13:20:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '-13:20:00', '2020-01-27', NULL, '00:00:00', 2, 2, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6230, 119, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6231, 119, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6232, 119, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6233, 119, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6234, 119, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6235, 119, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6236, 119, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6237, 119, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6238, 113, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6239, 113, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5643, 151, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5644, 151, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5645, 151, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5646, 138, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5647, 138, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5648, 138, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5649, 138, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5650, 138, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5651, 138, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5652, 138, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5653, 138, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6240, 113, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6241, 113, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6242, 113, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6243, 113, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6244, 113, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6245, 113, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5654, 105, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5655, 105, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5656, 105, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5657, 105, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5658, 105, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5659, 105, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5660, 105, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5661, 105, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6246, 147, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6247, 147, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6248, 147, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6249, 147, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6250, 147, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6251, 147, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6252, 147, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6253, 147, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6254, 131, 29, 2020, 9, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6255, 131, 29, 2020, 10, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5662, 134, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5663, 134, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5664, 134, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5665, 134, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5666, 134, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5667, 134, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5668, 134, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5669, 134, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6256, 131, 29, 2020, 11, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5670, 144, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5671, 144, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5672, 144, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5673, 144, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5674, 144, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5675, 144, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5676, 144, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5677, 144, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5678, 102, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5679, 102, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5680, 102, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5681, 102, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5682, 102, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5683, 102, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5684, 102, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5685, 102, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5686, 109, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5687, 109, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5688, 109, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5689, 109, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5690, 109, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5691, 109, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5692, 109, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5693, 109, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5694, 118, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6257, 131, 29, 2020, 12, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6258, 131, 29, 2020, 13, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6259, 131, 29, 2020, 14, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6260, 131, 29, 2020, 15, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6261, 131, 29, 2020, 16, '20:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '20:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5695, 118, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5696, 118, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5697, 118, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5698, 118, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5699, 118, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5700, 118, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5701, 118, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5702, 133, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5703, 133, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5704, 133, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5705, 133, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5706, 133, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5707, 133, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5708, 133, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5709, 133, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5710, 111, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5711, 111, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5712, 111, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5713, 111, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5714, 111, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5715, 111, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5716, 111, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5717, 111, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6262, 104, 29, 2020, 9, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6263, 104, 29, 2020, 10, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6264, 104, 29, 2020, 11, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6265, 104, 29, 2020, 12, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6266, 104, 29, 2020, 13, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5718, 128, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5719, 128, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5720, 128, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5721, 128, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5722, 128, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5723, 128, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5724, 128, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5725, 128, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5726, 142, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5727, 142, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5728, 142, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5729, 142, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5730, 142, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5731, 142, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5732, 142, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5733, 142, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5734, 136, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5735, 136, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5736, 136, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5737, 136, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5738, 136, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5739, 136, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5740, 136, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6267, 104, 29, 2020, 14, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6268, 104, 29, 2020, 15, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6269, 104, 29, 2020, 16, '30:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '10:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5741, 136, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5742, 140, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5743, 140, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5744, 140, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5745, 140, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5746, 140, 27, 2020, 5, '33:20:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '06:40:00', '2020-01-27', NULL, '40:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5747, 139, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5748, 139, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5749, 139, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5750, 139, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5751, 139, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5752, 139, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5753, 139, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5754, 139, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5755, 141, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5756, 141, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5757, 141, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5758, 141, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5759, 141, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5760, 141, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5761, 141, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5762, 141, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6270, 151, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6271, 151, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6272, 151, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6273, 151, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6274, 151, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6275, 151, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6276, 151, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6277, 151, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5763, 122, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5764, 122, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5765, 122, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5766, 122, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5767, 122, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5768, 122, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5769, 122, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5770, 122, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5771, 106, 27, 2020, 1, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5772, 106, 27, 2020, 2, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5773, 106, 27, 2020, 3, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5774, 106, 27, 2020, 4, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5775, 106, 27, 2020, 5, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5776, 106, 27, 2020, 6, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5777, 106, 27, 2020, 7, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5778, 106, 27, 2020, 8, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5779, 110, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5780, 110, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5781, 110, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6278, 138, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6279, 138, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6280, 138, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5782, 110, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5783, 110, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5784, 110, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5785, 110, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5786, 110, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5787, 145, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5788, 145, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5789, 145, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5790, 145, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5791, 145, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5792, 145, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5793, 145, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5794, 145, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5795, 148, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5796, 148, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5797, 148, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5798, 148, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5799, 148, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5800, 148, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5801, 148, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5802, 148, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6281, 138, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6282, 138, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6283, 138, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6284, 138, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6285, 138, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5803, 130, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5804, 130, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5805, 130, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5806, 130, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5807, 130, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5808, 130, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5809, 130, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5810, 130, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5256, 129, 27, 2020, 1, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2019-12-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5257, 129, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5258, 129, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5259, 129, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5260, 129, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5261, 129, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5262, 129, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5263, 129, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5819, 143, 27, 2020, 1, '33:20:00', '24:00:00', '00:00:00', '00:00:00', '00:00:00', '-09:20:00', '2019-12-30', NULL, '24:00:00', 5, 5, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5820, 143, 27, 2020, 2, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5821, 143, 27, 2020, 3, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5822, 143, 27, 2020, 4, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-20', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5823, 143, 27, 2020, 5, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-01-27', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5824, 143, 27, 2020, 6, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-03', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5825, 143, 27, 2020, 7, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-10', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (5826, 143, 27, 2020, 8, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-17', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6286, 105, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6287, 105, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6288, 105, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6289, 105, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6290, 105, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6291, 105, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6292, 105, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6293, 105, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6294, 134, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6295, 134, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6296, 134, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6297, 134, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6298, 134, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6299, 134, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6300, 134, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6301, 134, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6302, 144, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6303, 144, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6304, 144, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6305, 144, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6306, 144, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6307, 144, 29, 2020, 14, '13:20:00', '16:00:00', '00:00:00', '00:00:00', '00:00:00', '02:40:00', '2020-03-30', NULL, '16:00:00', 2, 2, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6308, 102, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6309, 102, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6310, 102, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6311, 102, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6312, 102, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6313, 102, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6314, 102, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6315, 102, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6316, 109, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6317, 109, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6318, 109, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6319, 109, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6320, 109, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6321, 109, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6322, 109, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6323, 109, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6324, 118, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6325, 118, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6326, 118, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6327, 118, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6328, 118, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6329, 118, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6330, 118, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6331, 118, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6332, 133, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6333, 133, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6334, 133, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6335, 133, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6336, 133, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6337, 133, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6338, 133, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6339, 133, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6340, 111, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6341, 111, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6342, 111, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6343, 111, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6344, 111, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6345, 111, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6346, 111, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6347, 111, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6348, 128, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6349, 128, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6350, 128, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6351, 128, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6352, 128, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6353, 128, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6354, 128, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6355, 128, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6356, 142, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6357, 142, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6358, 142, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6359, 142, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6360, 142, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6361, 142, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6362, 142, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6363, 142, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6364, 136, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6365, 136, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6366, 136, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6367, 136, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6368, 136, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6369, 136, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6370, 136, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6371, 136, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6372, 139, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6373, 139, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6374, 139, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6375, 139, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6376, 139, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6377, 139, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6378, 139, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6379, 139, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6380, 141, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6381, 141, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6382, 141, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6383, 141, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6384, 141, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6385, 141, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6386, 141, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6387, 141, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6388, 122, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6389, 122, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6390, 122, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6391, 122, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6392, 122, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6393, 122, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6394, 122, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6395, 122, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6396, 106, 29, 2020, 9, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6397, 106, 29, 2020, 10, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6398, 106, 29, 2020, 11, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6399, 106, 29, 2020, 12, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6400, 106, 29, 2020, 13, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6401, 106, 29, 2020, 14, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6402, 106, 29, 2020, 15, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6403, 106, 29, 2020, 16, '12:30:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '27:30:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6404, 110, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6405, 110, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6406, 110, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6407, 110, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6408, 110, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6409, 110, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6410, 110, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6411, 110, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6412, 145, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6413, 145, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6414, 145, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6415, 145, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6416, 145, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6417, 145, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6418, 145, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6419, 145, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6420, 148, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6421, 148, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6422, 148, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6423, 148, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6424, 148, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6425, 148, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6426, 148, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6427, 148, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6428, 130, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6429, 130, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6430, 130, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6431, 130, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6432, 130, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6433, 130, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6434, 130, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6435, 130, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6436, 129, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6437, 129, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6438, 129, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6439, 129, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6440, 129, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6441, 129, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6442, 129, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6443, 129, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6444, 143, 29, 2020, 9, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-02-24', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6445, 143, 29, 2020, 10, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-02', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6446, 143, 29, 2020, 11, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-09', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6447, 143, 29, 2020, 12, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-16', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6448, 143, 29, 2020, 13, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-23', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6449, 143, 29, 2020, 14, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-03-30', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6450, 143, 29, 2020, 15, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-06', NULL, '40:00:00', 7, 6, NULL); +INSERT INTO portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) VALUES (6451, 143, 29, 2020, 16, '40:00:00', '40:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '2020-04-13', NULL, '40:00:00', 7, 6, NULL); -- @@ -159,1511 +5199,156 @@ INSERT INTO portanova.staffgroups (id, groupname, groupcolor) VALUES (3, 'caisse -- --- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: - -- -- --- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3118, 3, '2019-12-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3133, 5, '2020-01-06', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3148, 5, '2020-01-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3163, 6, '2020-01-16', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3178, 44, '2020-01-02', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3193, 44, '2020-01-22', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1817, 34, '2017-07-07', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1847, 37, '2017-07-15', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3119, 3, '2019-12-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3134, 5, '2020-01-10', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3149, 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3164, 6, '2020-01-17', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3179, 44, '2020-01-01', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3194, 44, '2020-01-23', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3120, 3, '2020-01-01', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3135, 5, '2020-01-16', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3150, 6, '2019-12-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3165, 6, '2020-01-20', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3180, 44, '2020-01-06', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3195, 44, '2020-01-24', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3121, 3, '2020-01-02', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3136, 5, '2020-01-17', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3151, 6, '2019-12-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3166, 6, '2020-01-21', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3181, 44, '2020-01-03', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3196, 44, '2020-01-28', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3122, 3, '2020-01-03', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3137, 5, '2020-01-14', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3152, 6, '2020-01-01', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3167, 6, '2020-01-22', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3182, 44, '2020-01-07', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3197, 44, '2020-01-27', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3123, 5, '2019-12-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3138, 5, '2020-01-15', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3153, 6, '2020-01-02', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3168, 6, '2020-01-23', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3183, 44, '2020-01-08', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3198, 44, '2020-01-29', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3124, 5, '2020-01-03', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3139, 5, '2020-01-21', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3154, 6, '2020-01-03', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3169, 6, '2020-01-24', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3184, 44, '2020-01-10', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3199, 44, '2020-01-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2405, 20, '2017-06-17', NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3125, 5, '2020-01-02', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3140, 5, '2020-01-20', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3155, 6, '2020-01-06', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3170, 6, '2020-01-27', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3185, 44, '2020-01-09', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3200, 44, '2020-01-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3126, 5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3141, 5, '2020-01-22', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3156, 6, '2020-01-07', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3171, 6, '2020-01-28', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3186, 44, '2020-01-13', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3127, 5, '2020-01-01', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3142, 5, '2020-01-23', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3157, 6, '2020-01-08', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3172, 6, '2020-01-29', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3187, 44, '2020-01-14', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3128, 5, '2019-12-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3143, 5, '2020-01-24', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3158, 6, '2020-01-09', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3173, 6, '2020-01-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3188, 44, '2020-01-15', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3129, 5, '2020-01-13', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3144, 5, '2020-01-27', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3159, 6, '2020-01-10', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3174, 6, '2020-01-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3189, 44, '2020-01-16', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3130, 5, '2020-01-08', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3145, 5, '2020-01-28', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3160, 6, '2020-01-13', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3175, 44, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3190, 44, '2020-01-17', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3131, 5, '2020-01-07', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3146, 5, '2020-01-29', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3161, 6, '2020-01-14', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3176, 44, '2019-12-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3191, 44, '2020-01-20', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1767, 8, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1768, 8, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1769, 8, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1770, 8, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1771, 8, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1772, 8, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1773, 8, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1774, 8, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1775, 8, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1776, 8, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1777, 8, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1778, 8, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1779, 8, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1780, 8, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1781, 8, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1782, 8, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1783, 8, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1784, 8, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1785, 8, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1786, 8, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1787, 8, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1788, 8, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1789, 8, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1790, 8, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1791, 8, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1792, 8, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1793, 8, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1794, 8, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1795, 8, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1796, 8, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1797, 8, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1798, 8, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1799, 8, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1800, 8, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1801, 8, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1802, 8, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1803, 8, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1804, 8, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1805, 8, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1806, 8, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1807, 8, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1808, 8, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1809, 8, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1810, 8, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1811, 8, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1812, 34, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1813, 34, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1814, 34, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1815, 34, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1816, 34, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1818, 34, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1819, 34, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1820, 34, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1821, 34, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1822, 34, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1823, 34, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1824, 34, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1825, 34, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1826, 34, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1827, 34, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1828, 34, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1829, 34, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1830, 34, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1831, 34, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1832, 34, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1833, 34, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1834, 34, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1835, 34, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1836, 34, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1837, 34, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1838, 34, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1839, 34, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1840, 34, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1841, 34, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1842, 34, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1843, 34, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1844, 34, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1845, 34, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1846, 34, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1848, 37, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1849, 37, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1850, 37, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1851, 37, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1852, 37, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1853, 36, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1854, 36, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1855, 36, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1856, 36, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1857, 36, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1858, 36, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1859, 36, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1860, 36, '2017-06-05', '11:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1861, 36, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1862, 36, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1863, 36, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1864, 36, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1865, 36, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1866, 36, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1867, 36, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1868, 36, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1869, 36, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1870, 36, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1871, 36, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1872, 36, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1873, 36, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1874, 36, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1875, 36, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1876, 36, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1877, 36, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1878, 36, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1879, 36, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1880, 36, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1881, 36, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1882, 36, '2017-07-26', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1883, 36, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1884, 36, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1885, 36, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1886, 36, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1887, 25, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1888, 25, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1889, 25, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1890, 25, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1891, 25, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1892, 25, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1893, 25, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1894, 25, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1895, 25, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1896, 25, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1897, 25, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1898, 25, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1899, 25, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1900, 25, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1901, 25, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1902, 25, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1903, 25, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1904, 25, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1905, 25, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1906, 25, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1907, 25, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1908, 25, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1909, 25, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1910, 25, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1911, 25, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1912, 25, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1913, 25, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1914, 25, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1915, 25, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1916, 25, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1917, 25, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1918, 25, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1919, 25, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1920, 33, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1921, 33, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1922, 33, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1923, 33, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1924, 33, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1925, 33, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1926, 33, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1927, 33, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1928, 33, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1929, 33, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1930, 33, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1931, 33, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1932, 33, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1933, 33, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1934, 33, '2017-07-27', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1935, 33, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1936, 33, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1937, 33, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1938, 33, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1939, 33, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1940, 33, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1941, 33, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1942, 33, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1943, 33, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1944, 33, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1945, 33, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1946, 33, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1947, 33, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1948, 33, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1949, 33, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1950, 33, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1951, 33, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1952, 33, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1953, 33, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1954, 33, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1955, 33, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1956, 33, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1957, 33, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1958, 33, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1959, 33, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1960, 33, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1961, 33, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1962, 33, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1963, 11, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1964, 11, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1965, 11, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1966, 11, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1967, 11, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1968, 11, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1969, 11, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1970, 11, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1971, 11, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1972, 11, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1973, 11, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1974, 11, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1975, 11, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1976, 11, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1977, 11, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1978, 11, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1979, 11, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1980, 11, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1981, 11, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1982, 11, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1983, 11, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1984, 11, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1985, 11, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1986, 11, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1987, 11, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1988, 11, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1989, 11, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1990, 11, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1991, 11, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1992, 11, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1993, 11, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1994, 11, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1995, 11, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1996, 11, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1997, 11, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1998, 11, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (1999, 11, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2000, 11, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2001, 11, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2002, 11, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2003, 11, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2004, 11, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:40:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2005, 11, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2006, 29, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2007, 29, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2008, 29, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2009, 29, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2010, 29, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2011, 29, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2012, 29, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2013, 29, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2014, 29, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2015, 29, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2016, 29, '2017-07-06', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2017, 29, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2018, 29, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2019, 29, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2020, 29, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2021, 29, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2022, 29, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2023, 29, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2024, 29, '2017-07-07', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2025, 29, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2026, 29, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2027, 29, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2028, 29, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2029, 29, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2030, 29, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2031, 29, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2032, 29, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2033, 29, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2034, 29, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2035, 29, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2036, 29, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2037, 29, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2038, 29, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2039, 29, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2040, 29, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2041, 29, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2042, 29, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2043, 29, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2044, 29, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2045, 32, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2046, 32, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2047, 32, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2048, 32, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2049, 32, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2050, 32, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2051, 32, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2052, 32, '2017-07-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2053, 32, '2017-07-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2054, 32, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2055, 32, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2056, 32, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2057, 32, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2058, 32, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2059, 32, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2060, 32, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2061, 32, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2062, 32, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2063, 32, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2064, 32, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2065, 32, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2066, 32, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2067, 32, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2068, 32, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2069, 32, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2070, 32, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2071, 32, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2072, 32, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2073, 15, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2074, 15, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2075, 15, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2076, 15, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2077, 15, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2078, 15, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2079, 15, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2080, 15, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2081, 15, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2082, 15, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2083, 15, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2084, 15, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2085, 15, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2086, 15, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2087, 15, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2088, 15, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2089, 15, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2090, 15, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2091, 15, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2092, 15, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2093, 15, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2094, 15, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2095, 15, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2096, 15, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2097, 15, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2098, 15, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2099, 15, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2100, 15, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2101, 15, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2102, 15, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2103, 15, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2104, 24, '2017-07-12', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2105, 24, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2106, 24, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2107, 24, '2017-07-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2108, 24, '2017-07-16', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2109, 24, '2017-07-31', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2110, 24, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2111, 24, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2112, 24, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2113, 24, '2017-08-03', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2114, 24, '2017-07-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2115, 24, '2017-06-21', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2116, 24, '2017-06-17', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2117, 24, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2118, 24, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2119, 24, '2017-08-01', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2120, 24, '2017-06-29', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2121, 24, '2017-06-28', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2122, 24, '2017-06-16', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2123, 24, '2017-07-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2124, 24, '2017-06-15', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2125, 24, '2017-06-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2126, 24, '2017-07-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2127, 24, '2017-07-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2128, 24, '2017-08-04', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2129, 24, '2017-08-02', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2130, 24, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2131, 24, '2017-07-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2132, 24, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2133, 24, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2134, 24, '2017-07-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2135, 24, '2017-07-11', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2136, 24, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2137, 24, '2017-06-18', '11:00:00', '15:00:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2138, 24, '2017-06-10', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2139, 24, '2017-06-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2140, 24, '2017-06-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2141, 24, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2142, 24, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2143, 24, '2017-06-22', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2144, 1, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2145, 1, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2146, 1, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2147, 1, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2148, 1, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2149, 1, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2150, 1, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2151, 1, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2152, 1, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2153, 1, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2154, 1, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2155, 1, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2156, 1, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2157, 1, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2158, 1, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2159, 1, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2160, 1, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2161, 1, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2162, 1, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2163, 1, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2164, 1, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2165, 1, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2166, 1, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2167, 1, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2168, 1, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2169, 1, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2170, 1, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '21:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2171, 1, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2172, 1, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2173, 1, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '21:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2174, 26, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2175, 26, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2176, 26, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2177, 26, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2178, 26, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2179, 26, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2180, 26, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2181, 26, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2182, 26, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2183, 26, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2184, 26, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2185, 26, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2186, 26, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2187, 26, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2188, 26, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2189, 26, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2190, 26, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2191, 26, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2192, 26, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2193, 26, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2194, 26, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2195, 26, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2196, 26, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2197, 26, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2198, 26, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2199, 26, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2200, 26, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2201, 26, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2202, 26, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2203, 26, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2204, 26, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2205, 26, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2206, 26, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2207, 26, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2208, 26, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2209, 26, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2210, 26, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2211, 26, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2212, 30, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2213, 30, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2214, 30, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2215, 30, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2216, 30, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2217, 30, '2017-06-25', '10:30:00', '14:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2218, 30, '2017-07-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2219, 30, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2220, 30, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2221, 30, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2222, 30, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2223, 30, '2017-07-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2224, 30, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2225, 30, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2226, 30, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2227, 30, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2228, 30, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2229, 30, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2230, 30, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2231, 30, '2017-07-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2232, 28, '2017-07-01', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2233, 28, '2017-06-24', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2234, 28, '2017-06-13', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2235, 28, '2017-06-18', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2236, 28, '2017-06-26', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2237, 28, '2017-06-19', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2238, 28, '2017-07-27', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2239, 28, '2017-06-25', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2240, 28, '2017-07-24', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2241, 28, '2017-07-22', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2242, 28, '2017-07-08', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2243, 28, '2017-07-13', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2244, 28, '2017-07-09', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2245, 28, '2017-07-26', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2246, 28, '2017-07-19', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2247, 28, '2017-07-03', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2248, 28, '2017-07-25', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2249, 28, '2017-06-27', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2250, 28, '2017-07-30', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2251, 28, '2017-07-21', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2252, 28, '2017-06-20', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2253, 28, '2017-06-23', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2254, 28, '2017-06-14', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2255, 28, '2017-07-02', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2256, 28, '2017-07-04', '11:00:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2257, 28, '2017-06-17', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2258, 28, '2017-07-15', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2259, 28, '2017-06-30', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2260, 28, '2017-07-29', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2261, 28, '2017-07-20', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2262, 28, '2017-07-28', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2263, 28, '2017-07-16', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2264, 28, '2017-07-23', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2265, 28, '2017-07-12', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2266, 28, '2017-07-14', '11:30:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2267, 28, '2017-07-05', '11:00:00', '15:00:00', '18:00:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2268, 19, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2269, 19, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2270, 19, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2271, 19, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2272, 19, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2273, 19, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2274, 19, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2275, 19, '2017-06-25', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2276, 19, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2277, 19, '2017-06-24', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2278, 19, '2017-07-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2279, 19, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2280, 19, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2281, 19, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2282, 19, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2283, 19, '2017-06-21', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2284, 19, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2285, 19, '2017-06-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2286, 19, '2017-07-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2287, 19, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2288, 19, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2289, 19, '2017-06-23', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2290, 19, '2017-06-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2291, 19, '2017-06-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2292, 19, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2293, 35, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2294, 35, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2295, 35, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2296, 35, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2297, 35, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2298, 35, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2299, 35, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2300, 35, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2301, 35, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2302, 35, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2303, 35, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2304, 35, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2305, 35, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2306, 35, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2307, 35, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2308, 35, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2309, 35, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2310, 35, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2311, 35, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2312, 35, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2313, 35, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2314, 35, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2315, 35, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2316, 35, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2317, 35, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2318, 35, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2319, 35, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2320, 35, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2321, 35, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2322, 35, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2323, 35, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2324, 35, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2325, 35, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2326, 4, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2327, 4, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2328, 4, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2329, 4, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2330, 4, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2331, 4, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2332, 4, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2333, 4, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2334, 4, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2335, 4, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2336, 4, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2337, 4, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2338, 4, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2339, 4, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2340, 4, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2341, 4, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2342, 4, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2343, 4, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2344, 4, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2345, 4, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2346, 4, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2347, 4, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2348, 4, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2349, 4, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2350, 4, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2351, 4, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2352, 4, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2353, 4, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2354, 4, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2355, 4, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2356, 4, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2357, 4, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2358, 4, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2359, 4, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2360, 4, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2361, 4, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2362, 4, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2363, 4, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2364, 4, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2365, 4, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2366, 4, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2367, 4, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2368, 4, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2369, 4, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2370, 4, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2371, 20, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2372, 20, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2373, 20, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2374, 20, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2375, 20, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2376, 20, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2377, 20, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2378, 20, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2379, 20, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2380, 20, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2381, 20, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2382, 20, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2383, 20, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2384, 20, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2385, 20, '2017-06-14', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2386, 20, '2017-06-15', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2387, 20, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2388, 20, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2389, 20, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2390, 20, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2391, 20, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2392, 20, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2393, 20, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2394, 20, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2395, 20, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2396, 20, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2397, 20, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2398, 20, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2399, 20, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2400, 20, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2401, 20, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2402, 20, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2403, 20, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2404, 20, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2406, 20, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2407, 20, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2408, 20, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2409, 20, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2410, 20, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2411, 20, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2412, 20, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2413, 20, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2414, 20, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2415, 20, '2017-06-16', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2416, 16, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2417, 16, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2418, 16, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2419, 16, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2420, 16, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2421, 16, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2422, 16, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2423, 16, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2424, 16, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2425, 16, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2426, 16, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2427, 16, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2428, 16, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2429, 16, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2430, 16, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2431, 16, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2432, 16, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2433, 16, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2434, 16, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2435, 16, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2436, 16, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2437, 16, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2438, 16, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2439, 16, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2440, 16, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2441, 16, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2442, 16, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2443, 16, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2444, 16, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2445, 16, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2446, 16, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2447, 16, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2448, 16, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2449, 16, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2450, 16, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2451, 16, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2452, 16, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2453, 16, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2454, 16, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2455, 16, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2456, 16, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2457, 16, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2458, 16, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2459, 16, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2460, 16, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2461, 43, '2017-07-11', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2462, 43, '2017-07-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2463, 43, '2017-06-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2464, 43, '2017-06-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2465, 43, '2017-06-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2466, 43, '2017-06-22', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2467, 43, '2017-06-27', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2468, 43, '2017-07-25', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2469, 43, '2017-07-10', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2470, 43, '2017-08-02', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2471, 43, '2017-08-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2472, 43, '2017-07-18', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2473, 43, '2017-07-26', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2474, 43, '2017-07-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2475, 43, '2017-07-19', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2476, 43, '2017-07-13', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2477, 43, '2017-07-24', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2478, 43, '2017-06-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2479, 43, '2017-06-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2480, 43, '2017-07-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2481, 43, '2017-08-01', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2482, 43, '2017-06-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2483, 43, '2017-06-29', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2484, 43, '2017-06-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2485, 43, '2017-06-16', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2486, 43, '2017-06-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2487, 43, '2017-07-17', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2488, 43, '2017-06-15', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2489, 43, '2017-07-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2490, 43, '2017-07-14', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2491, 43, '2017-07-12', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2492, 43, '2017-06-07', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2493, 43, '2017-07-05', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2494, 43, '2017-07-06', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2495, 43, '2017-07-28', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2496, 43, '2017-07-31', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2497, 43, '2017-07-20', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2498, 43, '2017-07-04', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2499, 43, '2017-06-30', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2500, 43, '2017-08-03', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2501, 43, '2017-06-21', '09:30:00', '15:30:00', NULL, NULL, '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2502, 17, '2017-06-22', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2503, 17, '2017-06-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2504, 17, '2017-06-09', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2505, 17, '2017-06-08', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2506, 17, '2017-06-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2507, 17, '2017-07-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2508, 17, '2017-07-13', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2509, 17, '2017-07-10', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2510, 17, '2017-07-26', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2511, 17, '2017-08-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2512, 17, '2017-06-27', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2513, 17, '2017-07-17', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2514, 17, '2017-06-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2515, 17, '2017-06-16', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2516, 17, '2017-08-01', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2517, 17, '2017-06-23', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2518, 17, '2017-06-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2519, 17, '2017-06-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2520, 17, '2017-07-04', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2521, 17, '2017-07-20', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2522, 17, '2017-07-31', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2523, 17, '2017-07-05', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2524, 17, '2017-07-12', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2525, 17, '2017-06-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2526, 17, '2017-07-11', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2527, 17, '2017-07-24', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2528, 17, '2017-07-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2529, 17, '2017-07-19', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2530, 17, '2017-07-18', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2531, 17, '2017-08-02', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2532, 17, '2017-07-25', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2533, 17, '2017-06-15', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2534, 17, '2017-07-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2535, 17, '2017-06-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2536, 17, '2017-06-29', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2537, 17, '2017-06-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2538, 17, '2017-07-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2539, 17, '2017-06-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2540, 17, '2017-08-03', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2541, 17, '2017-06-30', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2542, 17, '2017-06-21', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2543, 17, '2017-07-28', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2544, 17, '2017-07-06', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2545, 17, '2017-06-07', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2546, 17, '2017-07-14', '08:00:00', '13:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2547, 2, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2548, 2, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2549, 2, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2550, 2, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2551, 2, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2552, 2, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2553, 2, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2554, 2, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2555, 2, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2556, 2, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2557, 2, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2558, 2, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2559, 2, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2560, 2, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2561, 2, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2562, 2, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2563, 2, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2564, 2, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2565, 2, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2566, 2, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2567, 2, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2568, 2, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2569, 2, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2570, 2, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2571, 2, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2572, 2, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2573, 2, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2574, 2, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2575, 2, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2576, 2, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2577, 2, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2578, 2, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2579, 2, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2580, 2, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2581, 2, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2582, 2, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2583, 2, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2584, 2, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2585, 2, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2586, 2, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2587, 2, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2588, 2, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2589, 2, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2590, 2, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2591, 2, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2592, 7, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2593, 7, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2594, 7, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2595, 7, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2596, 7, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2597, 7, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2598, 7, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2599, 7, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2600, 7, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2601, 7, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2602, 7, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2603, 7, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2604, 7, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2605, 7, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2606, 7, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2607, 7, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2608, 7, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2609, 7, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2610, 7, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2611, 7, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2612, 7, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2613, 7, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2614, 7, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2615, 7, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2616, 7, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2617, 7, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2618, 7, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2619, 7, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2620, 7, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2621, 7, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2622, 7, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2623, 7, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2624, 7, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2625, 7, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2626, 7, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2627, 7, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2628, 7, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2629, 7, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2630, 7, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2631, 7, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2632, 7, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2633, 7, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2634, 7, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2635, 7, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2636, 7, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2637, 9, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2638, 9, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2639, 9, '2017-07-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2640, 9, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2641, 9, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2642, 9, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2643, 9, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2644, 9, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2645, 9, '2017-07-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2646, 9, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2647, 9, '2017-07-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2648, 9, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2649, 9, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2650, 9, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2651, 9, '2017-06-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2652, 9, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2653, 9, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2654, 9, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2655, 9, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2656, 9, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2657, 9, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2658, 9, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2659, 9, '2017-06-13', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2660, 9, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2661, 9, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2662, 9, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2663, 9, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2664, 9, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2665, 9, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2666, 9, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2667, 9, '2017-06-27', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2668, 9, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2669, 9, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2670, 9, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2671, 9, '2017-06-20', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2672, 9, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2673, 9, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2674, 9, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2675, 9, '2017-08-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2676, 9, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2677, 9, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2678, 9, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2679, 9, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2680, 9, '2017-07-04', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2681, 9, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2682, NULL, '2017-06-23', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2683, NULL, '2017-06-16', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2684, NULL, '2017-07-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2685, NULL, '2017-07-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2686, NULL, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2687, NULL, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2688, NULL, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2689, NULL, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2690, NULL, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2691, NULL, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2692, NULL, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2693, NULL, '2017-06-09', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2694, NULL, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2695, NULL, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2696, NULL, '2017-07-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2697, NULL, '2017-08-04', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2698, NULL, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2699, NULL, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2700, NULL, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2701, NULL, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2702, NULL, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2703, NULL, '2017-06-14', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2704, NULL, '2017-07-07', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2705, NULL, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2706, NULL, '2017-06-28', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2707, NULL, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2708, NULL, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2709, NULL, '2017-07-21', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2710, NULL, '2017-07-14', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2711, NULL, '2017-06-07', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2712, NULL, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2713, NULL, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2714, NULL, '2017-07-28', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2715, NULL, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2716, NULL, '2017-06-30', '10:30:00', '14:30:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2717, NULL, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2718, NULL, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2719, NULL, '2017-06-21', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2720, NULL, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2721, NULL, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2722, NULL, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2723, NULL, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2724, NULL, '2017-08-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2725, NULL, '2017-07-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2726, NULL, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2727, 13, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2728, 13, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2729, 13, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2730, 13, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2731, 13, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2732, 13, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2733, 13, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2734, 13, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2735, 13, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2736, 13, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2737, 13, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2738, 13, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2739, 13, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2740, 13, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2741, 13, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2742, 13, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2743, 13, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2744, 13, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2745, 13, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2746, 13, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2747, 13, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2748, 13, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2749, 13, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2750, 13, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2751, 13, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2752, 13, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2753, 13, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '00:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2754, 13, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2755, 13, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2756, 31, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2757, 31, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2758, 31, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2759, 31, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2760, 31, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2761, 31, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2762, 31, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2763, 31, '2017-06-09', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2764, 31, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2765, 31, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2766, 31, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2767, 31, '2017-07-29', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2768, 31, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2769, 31, '2017-07-28', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2770, 31, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2771, 31, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2772, 31, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2773, 31, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2774, 31, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2775, 31, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2776, 31, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2777, 31, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2778, 31, '2017-07-30', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2779, 31, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2780, 31, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2781, 12, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2782, 12, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2783, 12, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2784, 12, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2785, 12, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2786, 12, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2787, 12, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2788, 12, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2789, 12, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2790, 12, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2791, 12, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2792, 12, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2793, 12, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2794, 12, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2795, 12, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2796, 12, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2797, 12, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2798, 12, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2799, 12, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2800, 12, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2801, 12, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2802, 12, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2803, 12, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2804, 12, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2805, 12, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2806, 12, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2807, 12, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2808, 12, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2809, 12, '2017-07-31', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2810, 12, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2811, 12, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2812, 12, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2813, 12, '2017-08-01', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2814, 12, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2815, 12, '2017-06-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2816, 12, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2817, 12, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2818, 12, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2819, 12, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2820, 12, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2821, 12, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2822, 12, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2823, 12, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2824, 12, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2825, 12, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2826, 12, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2827, 12, '2017-06-10', '10:30:00', '15:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2828, 12, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2829, 12, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2830, 12, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2831, 12, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2832, 12, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2833, 12, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2834, 12, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2835, 23, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2836, 23, '2017-08-03', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2837, 23, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2838, 23, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2839, 23, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2840, 23, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2841, 23, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2842, 23, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2843, 23, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2844, 23, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2845, 23, '2017-06-07', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2846, 23, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2847, 23, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2848, 23, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2849, 23, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2850, 23, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2851, 23, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2852, 23, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2853, 23, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2854, 23, '2017-06-06', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2855, 23, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2856, 23, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2857, 23, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2858, 23, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2859, 23, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2860, 23, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2861, 23, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2862, 23, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2863, 23, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2864, 23, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2865, 23, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2866, 23, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2867, 23, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2868, 23, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2869, 23, '2017-06-08', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2870, 23, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2871, 23, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2872, 23, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2873, 23, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2874, 21, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2875, 21, '2017-08-02', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2876, 21, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2877, 21, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2878, 21, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2879, 21, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2880, 21, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2881, 21, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2882, 21, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2883, 21, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2884, 21, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2885, 21, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2886, 21, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2887, 21, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2888, 21, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2889, 21, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2890, 21, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2891, 21, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2892, 21, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2893, 21, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2894, 21, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2895, 21, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2896, 21, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2897, 21, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2898, 21, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2899, 21, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2900, 21, '2017-07-31', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2901, 21, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2902, 21, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2903, 21, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2904, 21, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2905, 21, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2906, 21, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2907, 21, '2017-08-01', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2908, 21, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2909, 21, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2910, 21, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2911, 21, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2912, 10, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2913, 10, '2017-06-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2914, 10, '2017-07-06', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2915, 10, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2916, 10, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2917, 10, '2017-07-02', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2918, 10, '2017-08-03', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2919, 10, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2920, 10, '2017-06-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2921, 10, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2922, 10, '2017-06-14', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2923, 10, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2924, 10, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2925, 10, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2926, 10, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2927, 10, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2928, 10, '2017-06-15', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2929, 10, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2930, 10, '2017-08-02', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2931, 10, '2017-07-19', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2932, 10, '2017-08-06', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2933, 10, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2934, 10, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2935, 10, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2936, 10, '2017-07-12', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2937, 10, '2017-07-05', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2938, 10, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2939, 10, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2940, 10, '2017-07-20', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2941, 10, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2942, 10, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2943, 10, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2944, 10, '2017-08-04', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2945, 10, '2017-07-26', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2946, 10, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2947, 10, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2948, 10, '2017-08-05', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2949, 10, '2017-07-13', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2950, 10, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2951, 10, '2017-07-27', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2952, 10, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2953, 10, '2017-06-08', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2954, 10, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2955, 10, '2017-07-01', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2956, 10, '2017-06-22', '10:30:00', '14:30:00', '17:30:00', '00:25:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2957, 5, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2958, 5, '2017-07-16', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2959, 5, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2960, 5, '2017-07-20', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2961, 5, '2017-07-23', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2962, 5, '2017-07-17', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2963, 5, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2964, 5, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2965, 5, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2966, 5, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2967, 5, '2017-07-22', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2968, 5, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2969, 5, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2970, 5, '2017-07-13', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2971, 5, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2972, 5, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2973, 5, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2974, 5, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2975, 5, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2976, 5, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2977, 5, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2978, 5, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2979, 5, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2980, 5, '2017-07-27', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2981, 5, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2982, 5, '2017-07-15', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2983, 5, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2984, 5, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2985, 5, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2986, 5, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2987, 5, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2988, 5, '2017-07-14', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2989, 5, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2990, 5, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2991, 5, '2017-07-21', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2992, 5, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '21:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2993, 5, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2994, 5, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2995, 5, '2017-07-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2996, 5, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2997, 5, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2998, 5, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (2999, 5, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3000, 5, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3001, 5, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '23:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3002, 44, '2017-07-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3003, 44, '2017-07-20', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3004, 44, '2017-07-31', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3005, 44, '2017-07-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3006, 44, '2017-08-03', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3007, 44, '2017-06-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3008, 44, '2017-06-30', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3009, 44, '2017-07-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3010, 44, '2017-07-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3011, 44, '2017-07-05', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3012, 44, '2017-07-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3013, 44, '2017-06-29', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3014, 44, '2017-06-28', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3015, 44, '2017-06-16', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3016, 44, '2017-07-17', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3017, 44, '2017-07-21', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3018, 44, '2017-06-15', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3019, 44, '2017-06-14', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3020, 44, '2017-06-12', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3021, 44, '2017-07-07', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3022, 44, '2017-08-01', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3023, 44, '2017-06-06', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3024, 44, '2017-07-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3025, 44, '2017-07-24', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3026, 44, '2017-06-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3027, 44, '2017-07-25', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3028, 44, '2017-07-10', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3029, 44, '2017-08-02', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3030, 44, '2017-08-04', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3031, 44, '2017-07-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3032, 44, '2017-07-18', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3033, 44, '2017-07-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3034, 44, '2017-06-08', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3035, 44, '2017-06-13', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3036, 44, '2017-06-09', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3037, 44, '2017-06-22', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3038, 44, '2017-07-11', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3039, 44, '2017-07-27', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3040, 44, '2017-06-26', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3041, 44, '2017-06-19', '08:00:00', '12:00:00', '13:00:00', '17:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3042, 22, '2017-07-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3043, 22, '2017-07-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3044, 22, '2017-07-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3045, 22, '2017-07-04', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3046, 22, '2017-06-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3047, 22, '2017-07-15', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3048, 22, '2017-06-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3049, 22, '2017-07-14', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3050, 22, '2017-07-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3051, 22, '2017-06-29', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3052, 22, '2017-06-28', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3053, 22, '2017-06-16', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3054, 22, '2017-06-20', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3055, 22, '2017-07-21', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3056, 22, '2017-07-30', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3057, 22, '2017-07-17', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3058, 22, '2017-06-12', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3059, 22, '2017-07-07', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3060, 22, '2017-06-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3061, 22, '2017-06-23', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3062, 22, '2017-06-06', '10:30:00', '14:30:00', '17:30:00', '23:30:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3063, 22, '2017-07-08', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3064, 22, '2017-08-05', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3065, 22, '2017-07-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3066, 22, '2017-07-22', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3067, 22, '2017-07-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3068, 22, '2017-06-11', '10:30:00', '14:30:00', '17:30:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3069, 22, '2017-07-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3070, 22, '2017-06-27', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3071, 22, '2017-07-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3072, 22, '2017-08-04', '11:00:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3073, 22, '2017-07-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3074, 22, '2017-07-03', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3075, 22, '2017-06-09', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3076, 22, '2017-06-13', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3077, 22, '2017-06-24', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3078, 22, '2017-07-11', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3079, 22, '2017-06-25', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3080, 22, '2017-06-10', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3081, 22, '2017-06-18', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3082, 22, '2017-06-26', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3083, 22, '2017-06-19', '10:30:00', '14:30:00', '17:30:00', '23:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3084, 3, '2017-07-07', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3085, 3, '2017-06-05', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3086, 3, '2017-06-12', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3087, 3, '2017-06-23', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3088, 3, '2017-06-16', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3089, 3, '2017-06-29', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3090, 3, '2017-07-30', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3091, 3, '2017-06-15', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3092, 3, '2017-07-06', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3093, 3, '2017-07-31', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3094, 3, '2017-07-28', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3095, 3, '2017-07-29', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3096, 3, '2017-06-17', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3097, 3, '2017-06-30', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3098, 3, '2017-08-03', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3099, 3, '2017-07-02', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3100, 3, '2017-06-25', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3101, 3, '2017-06-19', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3102, 3, '2017-06-10', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3103, 3, '2017-06-18', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3104, 3, '2017-06-26', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3105, 3, '2017-06-09', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3106, 3, '2017-06-08', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3107, 3, '2017-06-24', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3108, 3, '2017-06-22', '10:30:00', '15:00:00', '18:00:00', '22:35:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3109, 3, '2017-07-01', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3110, 3, '2017-06-11', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3111, 3, '2017-07-03', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3112, 3, '2017-08-04', '10:30:00', '15:00:00', '18:00:00', '22:15:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3113, 3, '2017-07-10', '10:30:00', '15:00:00', '18:00:00', '00:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3114, 3, '2017-08-05', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3115, 3, '2017-07-09', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3116, 3, '2017-07-08', '10:30:00', '15:00:00', '18:00:00', '22:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3117, 3, '2017-08-06', '10:30:00', '15:00:00', '18:00:00', '21:45:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3132, 5, '2020-01-09', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3147, 5, '2020-01-30', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3162, 6, '2020-01-15', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3177, 44, '2019-12-31', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); -INSERT INTO portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) VALUES (3192, 44, '2020-01-21', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (5, 'extraordinaire', true, true, '#e26b0a'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (7, 'training', true, NULL, '#b7dee8'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (4, 'jour de repos', false, true, '#0070c0'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (3, 'comp. 44h', false, NULL, '#86a0af'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (6, 'comp. dim. trav.', false, NULL, '#aeb2b5'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (2, 'maladie', true, true, '#e3000f'); +INSERT INTO portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) VALUES (1, 'normal', true, true, '#1b92bb'); -- -- Data for Name: workplans; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '14:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (6, 'Cuisine 1 (40h) ', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', '11:00:00', '15:00:00', '18:00:00', '23:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) VALUES (1, 'Standard', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', '08:00:00', '12:00:00', '13:00:00', '18:00:00', '01:00:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); -- --- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: - +-- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: - -- -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (1, 'normal', true, NULL, NULL); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (5, 'congé extra', true, true, '#e26b0a'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (2, 'congé', true, true, '#fcd5b4'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (4, 'congé maladie', true, true, '#f2dcdb'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (3, 'training', true, NULL, '#b7dee8'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (6, 'jour ferié', true, NULL, '#92d050'); -INSERT INTO portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) VALUES (7, 'libre jours', NULL, NULL, '#0070c0'); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (18, 135, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (56, 141, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (57, 142, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (58, 138, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (2, 141, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (3, 142, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (19, 133, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (20, 141, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (21, 142, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (22, 127, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (23, 136, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (24, 138, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (25, 139, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (26, 134, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (27, 131, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (28, 129, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (29, 128, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (30, 130, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (31, 143, 18, '328:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (33, 103, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (35, 125, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (32, 102, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (34, 104, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (36, 122, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (38, 117, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (37, 121, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (39, 115, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (40, 114, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (41, 119, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (42, 113, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (43, 146, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (44, 112, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (45, 108, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (46, 109, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (47, 147, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (48, 105, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (49, 118, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (59, 131, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (60, 135, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (61, 132, 9, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (62, 133, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (63, 127, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (64, 136, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (65, 140, 9, '184:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (66, 139, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (67, 134, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (68, 129, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (69, 144, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (70, 128, 9, '24:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (71, 130, 9, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (72, 143, 9, '304:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (4, 138, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (5, 131, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (6, 135, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (7, 133, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (8, 127, 10, '320:00:00', '00:00:00', '00:00:00', '08:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (9, 136, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (10, 139, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (11, 134, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (12, 129, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (13, 144, 10, '218:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (14, 128, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (15, 130, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (16, 143, 10, '320:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (102, 151, 19, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (50, 106, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (51, 111, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (52, 110, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (53, 145, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (54, 148, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); +INSERT INTO portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) VALUES (55, 149, 20, '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', '00:00:00', NULL); -- --- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 7, true); +SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); -- --- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); -- -- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); +SELECT pg_catalog.setval('portanova.staff_id_seq', 151, true); -- -- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 3, true); +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 49, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); + + +-- +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); -- @@ -1674,24 +5359,31 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3200, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); + + +-- +-- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - +-- + +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); -- -- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: - -- -SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); +SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); -- diff --git a/dev/db/potlu_db.portanova.pg.full.sql b/dev/db/potlu_db.portanova.pg.full.sql index 9ae12419..d444c0e5 100644 --- a/dev/db/potlu_db.portanova.pg.full.sql +++ b/dev/db/potlu_db.portanova.pg.full.sql @@ -25,30 +25,621 @@ CREATE SCHEMA portanova; ALTER SCHEMA portanova OWNER TO potlu_user; +-- +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='portanova'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from portanova.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + select max(id) into rpparentid from portanova.reportperiod; + --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; + INSERT INTO portanova.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; + perform portanova.update_all_staff_in_period(newperiodid); + return newperiodid; +end; +$$; + + +ALTER FUNCTION portanova.add_reportperiod() OWNER TO potlu_user; + +-- +-- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + + +ALTER FUNCTION portanova.getperiod_staffcontract(pid integer) OWNER TO potlu_user; + +-- +-- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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 portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +END; +$$; + + +ALTER FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) OWNER TO potlu_user; + +-- +-- Name: onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.onchange_reportperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + +-- +-- Name: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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 bigint) OWNER TO potlu_user; + +-- +-- Name: set_staffperiod_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) 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 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, + 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; +$$; + + +ALTER FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_staffperiodweek_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from portanova.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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; +$$; + + +ALTER FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_stafftoperioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_stafftoperioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform portanova.set_periodday_sums(cid_staffworkplan); + 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 integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: set_stafftoperiodweeks(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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 , +coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , +coalesce(sum(dayhours),'00:00:00') as totalhours, +count(id) 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 +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 + --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) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + + +ALTER FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_all_staff_in_period(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from portanova.getperiod_staffcontract(pid_period) group by id_staff + loop + perform portanova.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + + +ALTER FUNCTION portanova.update_all_staff_in_period(pid_period integer) OWNER TO potlu_user; + +-- +-- Name: update_staff_in_period(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + BEGIN + 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); + perform portanova.set_staffperiod_sums(pid_period,pid_staff); + return true; + END; +$$; + + +ALTER FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_staffreportperiod(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM portanova.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO portanova.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + + +ALTER FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: update_staffweeksums(bigint); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan bigint) 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 bigint) OWNER TO potlu_user; + +-- +-- Name: update_staffworkplan(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.update_staffworkplan(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: verify_perioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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; +$$; + + +ALTER FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) OWNER TO potlu_user; + +-- +-- Name: zzold_onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + +-- +-- Name: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod where isvalidated != true + loop + perform portanova.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + + +ALTER FUNCTION portanova.zzold_refreshperiods() OWNER TO potlu_user; + +-- +-- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: potlu_user +-- + +CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period integer) 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 integer) OWNER TO potlu_user; + SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: editlog; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE TABLE portanova.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -ALTER TABLE portanova.reportperiod OWNER TO potlu_user; +ALTER TABLE portanova.editlog OWNER TO potlu_user; -- --- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.reportperiod_id_seq - AS integer +CREATE SEQUENCE portanova.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -56,40 +647,35 @@ CREATE SEQUENCE portanova.reportperiod_id_seq CACHE 1; -ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.editlog_id_seq OWNER TO potlu_user; -- --- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; +ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; -- --- Name: sites; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.sites ( +CREATE TABLE portanova.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -ALTER TABLE portanova.sites OWNER TO potlu_user; +ALTER TABLE portanova.reportperiod OWNER TO potlu_user; -- --- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.sites_id_seq +CREATE SEQUENCE portanova.reportperiod_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -98,13 +684,13 @@ CREATE SEQUENCE portanova.sites_id_seq CACHE 1; -ALTER TABLE portanova.sites_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.reportperiod_id_seq OWNER TO potlu_user; -- --- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; -- @@ -118,8 +704,14 @@ CREATE TABLE portanova.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); @@ -155,9 +747,11 @@ CREATE TABLE portanova.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); @@ -170,7 +764,9 @@ ALTER TABLE portanova.staffcontract OWNER TO potlu_user; CREATE TABLE portanova.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); @@ -221,27 +817,103 @@ ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffcontract -- --- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, + id_staff integer, + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval +); + + +ALTER TABLE portanova.staffreportperiod OWNER TO potlu_user; + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffreportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE portanova.staffreportperiod_id_seq OWNER TO potlu_user; + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffreportperiod_id_seq OWNED BY portanova.staffreportperiod.id; + + +-- +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.stafftimetracks ( +CREATE TABLE portanova.staffreportperioddays ( id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + + +ALTER TABLE portanova.staffreportperioddays OWNER TO potlu_user; + +-- +-- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.zzold_staffreportperiodsums ( + id integer NOT NULL, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -ALTER TABLE portanova.stafftimetracks OWNER TO potlu_user; +ALTER TABLE portanova.zzold_staffreportperiodsums OWNER TO potlu_user; -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.stafftimetracks_id_seq +CREATE SEQUENCE portanova.staffreportperiodsums_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -249,14 +921,41 @@ CREATE SEQUENCE portanova.stafftimetracks_id_seq CACHE 1; -ALTER TABLE portanova.stafftimetracks_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.staffreportperiodsums_id_seq OWNER TO potlu_user; + +-- +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; + -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; +CREATE TABLE portanova.staffreportperiodweeks ( + id integer NOT NULL, + id_staff integer, + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); + +ALTER TABLE portanova.staffreportperiodweeks OWNER TO potlu_user; -- -- Name: staffvacancy; Type: TABLE; Schema: portanova; Owner: potlu_user @@ -265,12 +964,9 @@ ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetrac CREATE TABLE portanova.staffvacancy ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); @@ -299,26 +995,32 @@ ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; -- --- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: staffweeksums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.staffvacancyyear ( - id integer NOT NULL, - id_staff integer, - vyear integer, - hours numeric, - days numeric -); +CREATE SEQUENCE portanova.staffweeksums_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; -ALTER TABLE portanova.staffvacancyyear OWNER TO potlu_user; +ALTER TABLE portanova.staffweeksums_id_seq OWNER TO potlu_user; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: staffweeksums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.staffvacancyyear_id_seq - AS integer +ALTER SEQUENCE portanova.staffweeksums_id_seq OWNED BY portanova.staffreportperiodweeks.id; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -326,40 +1028,34 @@ CREATE SEQUENCE portanova.staffvacancyyear_id_seq CACHE 1; -ALTER TABLE portanova.staffvacancyyear_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.staffworkplan_id_seq OWNER TO potlu_user; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffreportperioddays.id; -- --- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.staffworkplan ( - id bigint NOT NULL, - id_staff integer, +CREATE TABLE portanova.vacancydays ( + id integer NOT NULL, daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text + vacancyname text ); -ALTER TABLE portanova.staffworkplan OWNER TO potlu_user; +ALTER TABLE portanova.vacancydays OWNER TO potlu_user; -- --- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user +-- Name: vacancydays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- -CREATE SEQUENCE portanova.staffworkplan_id_seq +CREATE SEQUENCE portanova.vacancydays_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -367,25 +1063,56 @@ CREATE SEQUENCE portanova.staffworkplan_id_seq CACHE 1; -ALTER TABLE portanova.staffworkplan_id_seq OWNER TO potlu_user; +ALTER TABLE portanova.vacancydays_id_seq OWNER TO potlu_user; -- --- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- Name: vacancydays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user +-- + +ALTER SEQUENCE portanova.vacancydays_id_seq OWNED BY portanova.vacancydays.id; + + +-- +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + + +ALTER TABLE portanova.vacancytypes OWNER TO potlu_user; + +-- +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; +CREATE VIEW portanova.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; +ALTER TABLE portanova.vw_reportperioddata OWNER TO potlu_user; + -- -- Name: vw_reportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- CREATE VIEW portanova.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM portanova.reportperiod; + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; ALTER TABLE portanova.vw_reportperiodlist OWNER TO potlu_user; @@ -398,14 +1125,64 @@ CREATE VIEW portanova.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM portanova.staffcontract; ALTER TABLE portanova.vw_staffcontractdata OWNER TO potlu_user; +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + +ALTER TABLE portanova.workplans OWNER TO potlu_user; + -- -- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -414,14 +1191,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (portanova.staffcontract sc + sg.groupcolor, + sc.enddate, + sc.id_workplan, + wp.workplan + FROM ((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) - ORDER BY sc.startdate DESC; + LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + ORDER BY sc.startdate DESC, sc.enddate DESC; ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; @@ -433,12 +1214,18 @@ ALTER TABLE portanova.vw_staffcontractlist OWNER TO potlu_user; CREATE VIEW portanova.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM portanova.staff; @@ -451,7 +1238,8 @@ ALTER TABLE portanova.vw_staffdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -464,7 +1252,8 @@ ALTER TABLE portanova.vw_staffgroupsdata OWNER TO potlu_user; CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -475,16 +1264,17 @@ ALTER TABLE portanova.vw_staffgroupslist OWNER TO potlu_user; -- CREATE VIEW portanova.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM portanova.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (portanova.staff st + LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; ALTER TABLE portanova.vw_stafflist OWNER TO potlu_user; @@ -743,31 +1533,154 @@ CREATE VIEW portanova.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 + staffreportperioddays.timepause + FROM portanova.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; ALTER TABLE portanova.vw_staffplanned_dayweektotals OWNER TO potlu_user; +-- +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.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)))) + ORDER BY pd.id_reportperiod, pd.id_staff, pd.daydate; + + +ALTER TABLE portanova.vw_staffreportperioddays OWNER TO potlu_user; + +-- +-- Name: vw_staffreportperiodlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffreportperiodlist AS + SELECT st.prename, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((portanova.staffreportperiod srp + LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) + LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) + LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + + +ALTER TABLE portanova.vw_staffreportperiodlist OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM portanova.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + + +ALTER TABLE portanova.vw_staffworkplan_dailylist OWNER TO potlu_user; + -- -- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -815,9 +1728,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -860,9 +1788,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -905,9 +1848,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -950,9 +1908,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -995,9 +1968,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1040,12 +2028,27 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, - to_char(max( + max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, + to_char(max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sat_timetotal, max( @@ -1085,253 +2088,133 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + stw.timepause + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; ALTER TABLE portanova.vw_staffworkplan_weekly OWNER TO potlu_user; -- --- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE VIEW portanova.vw_staffworkplanlist AS - SELECT st.id AS id_staff, +CREATE VIEW portanova.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, + ((st.surname || ' '::text) || st.prename) AS staffname, + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (portanova.staffreportperioddays swp + JOIN portanova.staff st ON ((swp.id_staff = st.id))); + + +ALTER TABLE portanova.vw_staffworkplandata OWNER TO potlu_user; + +-- +-- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (portanova.vw_staffworkplan_weekly sp_dwt - LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; - - -ALTER TABLE portanova.vw_staffworkplanlist OWNER TO potlu_user; + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (portanova.staff st + LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); + + +ALTER TABLE portanova.vw_staffworkplanstafflist OWNER TO potlu_user; -- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: potlu_user +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -CREATE TABLE portanova.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; -ALTER TABLE portanova.workplans OWNER TO potlu_user; +ALTER TABLE portanova.vw_vacancylist OWNER TO potlu_user; -- -- Name: vw_workplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user @@ -1345,25 +2228,6 @@ CREATE VIEW portanova.vw_workplanlist AS ALTER TABLE portanova.vw_workplanlist OWNER TO potlu_user; --- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user --- - -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM portanova.workplans; - - -ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; - -- -- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: potlu_user -- @@ -1371,46 +2235,138 @@ ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; CREATE VIEW portanova.vw_workplansdata AS SELECT workplans.id, workplans.workplan, + to_char(((((((COALESCE(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM portanova.workplans; ALTER TABLE portanova.vw_workplansdata OWNER TO potlu_user; +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: potlu_user +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (portanova.workplans + JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + + +ALTER TABLE portanova.vw_workplans OWNER TO potlu_user; + -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- @@ -1433,21 +2389,6 @@ ALTER TABLE portanova.workplans_id_seq OWNER TO potlu_user; ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; --- --- Name: worktypes; Type: TABLE; Schema: portanova; Owner: potlu_user --- - -CREATE TABLE portanova.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - - -ALTER TABLE portanova.worktypes OWNER TO potlu_user; - -- -- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: potlu_user -- @@ -1467,21 +2408,59 @@ ALTER TABLE portanova.worktypes_id_seq OWNER TO potlu_user; -- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: potlu_user -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; -- --- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); +CREATE VIEW portanova.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; + +ALTER TABLE portanova.zzold_vw_staffworkplanlist OWNER TO potlu_user; -- --- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); +ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); -- @@ -1506,10 +2485,24 @@ ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('port -- --- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiod_id_seq'::regclass); + + +-- +-- Name: staffreportperioddays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: staffreportperiodweeks id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('portanova.staffweeksums_id_seq'::regclass); -- @@ -1520,17 +2513,17 @@ ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('por -- --- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: vacancydays id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('portanova.vacancydays_id_seq'::regclass); -- --- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: vacancytypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); -- @@ -1541,28 +2534,27 @@ ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portan -- --- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: potlu_user +-- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); -- --- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Data for Name: editlog; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.reportperiod (id, periodname, startdate, enddate) FROM stdin; -1 Période 1 2020 2019-12-30 2020-02-23 -5 Periode X 2019-11-25 2020-04-05 -6 TEST 2019-11-25 2020-01-05 +COPY portanova.editlog (id, id_user, tblname, tblfields, modified, created) FROM stdin; \. -- --- Data for Name: sites; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Data for Name: reportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.sites (id, sitename, address, zip, city, country, id_timetracker, created, modified, timeclockhost) FROM stdin; +COPY portanova.reportperiod (id, periodname, startdate, enddate, id_parentreportperiod) FROM stdin; +27 \N 2019-12-30 2020-02-23 \N +29 \N 2020-02-24 2020-04-19 27 \. @@ -1570,52 +2562,57 @@ COPY portanova.sites (id, sitename, address, zip, city, country, id_timetracker, -- Data for Name: staff; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, entrydate, leavedate) FROM stdin; -1 A100 NISTRI ANGELA serveuse 1987-03-27 2015-06-22 \N -4 A101 JOURDAN JOSIAN serveuse 1981-01-29 2015-04-01 \N -5 A102 ARENGA TERESA serveuse 1981-06-15 2015-03-10 \N -6 A103 BARROSO MARIA serveuse \N 2000-01-01 \N -7 A104 STIPA CRISTIAN serveur 1975-08-08 2015-11-09 \N -15 5558 DEDJA CLAIDIO Barman 1994-02-24 2014-11-15 \N -16 7595 PUGLIESE GIUSEPPE serveur/Barman 1995-11-05 2015-10-08 \N -8 A105 LIBERTI RICCARDO serveur 1990-06-19 2016-02-13 \N -11 A106 ARMOCIDA Domenico serveur \N 2000-01-01 \N -12 A107 MORTASSI KARIM serveur \N 2000-01-01 \N -13 A108 IRIA FABIO serveur \N 2000-01-01 \N -14 A109 SERGIO SERGIO serveur \N 2000-01-01 \N -18 A200 \N \N Barman \N 2000-01-01 \N -20 A110 QUATTRONE DEMETRIO Cuisinier 1950-06-27 2015-12-01 \N -24 A111 RAMOS DA SILVA JOHNY cuisinier 1966-08-25 2005-05-01 \N -25 A112 VICINI DAVIDE \N \N 2000-01-01 \N -26 A113 LAMA ANGELO commis de cuisine 1992-11-20 2008-07-10 \N -30 A114 ILIC JULIEN apprenti 1995-04-22 2000-01-01 \N -31 A115 SOMNEZ TUNAHAN \N \N 2000-01-01 \N -36 A117 DA LUZ CANDIDA plongeus \N 2000-01-01 \N -37 A118 CRISCIONE EMANUELE resp. de réception 1981-09-18 2000-01-01 \N -41 A119 SONMEZ TUNAHAN apprenti 1998-06-15 2000-01-01 \N -42 A120 IRIA SILVA FABIO apprenti 1988-06-29 2000-01-01 \N -43 A121 MULLER RICA secrétaire de direction 1966-12-02 2000-01-01 \N -44 A122 BRUCCOLERI SARAH attachée de direction 1984-11-01 2000-01-01 \N -45 100 PRESTI ADRIANO gérant \N 2000-01-01 \N -2 5020 MATIAS RAPHAEL serveur 1975-01-26 2005-04-19 \N -3 6600 ALIF DIDIER serveur 1968-04-14 2007-08-14 \N -9 5502 COPPOLA CHRISTIAN serveur 1990-11-25 2016-01-18 \N -21 8775 ZAKLAN ZORAN cuisinier 1959-05-25 2005-01-08 \N -22 5695 ELKAOUI MOURAD cuisinier 1973-02-12 2014-04-15 \N -23 5503 CORONEL SILVINO ROSA aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N -27 7120 MELO IVO TIAGO aide-pizzaiolo/commis de cuisine 1985-06-08 2013-01-07 \N -28 7600 PREZZIOSA MATTEO pizzaiolo 1959-03-26 2012-10-03 \N -29 5250 BOUALI AMAR aide-pâtissier/commis de cuisine 1980-02-20 2015-06-01 \N -32 5480 COIMBRA ABRANTES MARIA commis de cuisine 1969-09-24 2006-10-23 \N -33 5540 DE BRITO Djela commis de cuisine 1975-01-15 1995-07-01 \N -34 7591 PEREIRA GOMES ANTONIA plongeuse 1987-04-29 1992-03-15 \N -35 5600 DOS SANTOS Alcinda plongeuse 1960-12-26 2011-07-05 \N -38 7980 SCHMITGEN TANUCCIA Hôtesse d'accueil/serveuse 1964-01-20 2010-10-04 \N -39 2701 KIEFFER-WEILER LILIANNE hôtesse d'accueil 1958-04-21 2015-07-01 \N -40 8725 YAKOBSON YULIYA hôtesse d'accueil 1974-04-02 2011-10-01 \N -10 8501 TAVERNA Greta serveuse \N 2000-01-01 \N -17 5280 BULAKU ENVER concierge/technicien 1971-02-08 2000-01-01 \N -19 1172 BUCHICCHIO DONATO ANTONIO chef cuisinier 1970-10-23 2000-01-01 \N +COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, matricule, email, phone, city, zip, country, address, id_staffgroup) FROM stdin; +132 5430 CAMPANELLA Isamaele commis de cuisine \N \N \N \N \N \N \N \N 1 +133 7600 PREZIOSA MATTEO pizzaiolo 1959-03-26 \N \N \N \N \N \N \N 1 +131 8775 ZAKLAN ZORAN cuisinier 1959-05-25 \N \N \N \N \N \N \N 1 +108 5502 COPPOLA CHRISTIAN chef de salle \N \N \N \N \N \N \N \N 2 +117 5514 DAGGIANO GREGORIO serveur/Barman \N \N \N \N \N \N \N \N 2 +135 5503 CORONEL SILVINO cuisinier 1964-12-18 \N \N \N \N \N \N \N 1 +136 5480 COIMBRA DE SOUSA MARIA commis de cuisine 1969-09-24 \N \N \N \N \N \N \N 1 +111 5140 ARMOCIDA DOMENICO serveur/Barman \N \N \N \N \N \N \N \N 2 +103 1320 BRUCCOLERI SARAH attachée de direction 1984-11-01 \N \N \N \N \N \N \N 4 +104 3200 MULLER RICA secrétaire de direction 1966-12-02 \N \N \N \N \N \N \N 4 +109 5020 ALIF DIDIER serveur 1975-01-26 \N \N \N \N \N \N \N 2 +113 6890 LIEBERTI RICCARDO serveur/Barman 1990-06-19 \N \N \N \N \N \N \N 2 +134 8091 SONMEZ TUNAHAN cuisinier \N \N \N \N \N \N \N \N 1 +114 6600 JOURDAN JOSIANE serveuse 1968-04-14 \N \N \N \N \N \N \N 2 +115 8050 JOSE SILVERIO BARROSO MARIA serveuse 1968-04-05 \N \N \N \N \N \N \N 2 +118 6895 LIMA PERREIRA CATIA INES serveuse 1995-06-06 \N \N \N \N \N \N \N 2 +102 100 PRESTI ADRIANO gérant \N \N \N \N \N \N \N \N 4 +110 5550 DISTANTE FRANCESCO serveur \N \N \N \N \N \N \N \N 2 +112 5230 SIMEN ABDEL MONEM BEN serveur \N \N \N \N \N \N \N \N 2 +116 7052 MASTRINI MARCO serveur/Barman \N \N \N \N \N \N \N \N 2 +145 5270 BIGOS Grzegorz serveur/barman \N \N \N \N \N \N \N \N 2 +144 8070 LOPES DA CRUZ SIMARA plongeuse \N \N \N \N \N \N \N \N 1 +130 5695 ELKAOUI MOURAD cuisinier 1973-02-12 \N \N \N \N \N \N \N 1 +121 5585 DO ROSARIO TIFFANY APPRENTI EN SALLE \N \N \N \N \N \N \N \N 2 +126 5510 D'EUGENIO PIERO chef cuisinier \N \N \N \N \N \N \N \N 1 +127 7750 RICCI Gabriele cuisinier \N \N \N \N \N \N \N \N 1 +128 1172 BUCHICCHIO DONATO chef cuisinier \N \N \N \N \N \N \N \N 1 +119 7178 MORHTASSI KARIM serveur/Barman \N \N \N \N \N \N \N \N 2 +120 7490 PERREIRA ANTONIO serveur/Barman \N \N \N \N \N \N \N \N 2 +138 7965 SAVALLI Delia pâtissier \N \N \N \N \N \N \N \N 1 +124 7941 SABBA LEONARD musicien 1954-08-07 \N \N \N \N \N \N \N 2 +105 3600 PINTO DA COSTA GRACINDA Hôtesse d'accueil/serveuse 1974-04-02 \N \N \N \N \N \N \N 2 +106 2701 WEILER KIEFFER LILIANNE hôtesse d'accueil 1958-04-21 \N \N \N \N \N \N \N 2 +122 7595 PUGLIESE GIUSEPPE serveur/Barman 1994-02-24 \N \N \N \N \N \N \N 2 +107 7950 SANTORO DARIO Hôtesse d'accueil/serveuse \N \N \N \N \N \N \N \N 2 +123 8155 TAVARES LOPES JOAO serveur/Barman \N \N \N \N \N \N \N \N 2 +146 5506 COSTA Giovanni RESPONSABLE DU BAR \N \N \N \N \N \N \N \N 2 +147 5697 EMBAREK BEN MOHAMED Francoise Responsable experimente \N \N \N \N \N \N \N \N 2 +148 6770 KARATHANASIS Evangelos serveur/barman \N \N \N \N \N \N \N \N 2 +149 7130 MESSINA Giovanni serveur/barman \N \N \N \N \N \N \N \N 2 +150 6876 LAMENDOUR JULIEN serveur/barman 1998-01-27 \N \N \N \N \N \N \N 2 +125 5280 BULAKU ENVER concierge/technicien 1971-02-08 \N \N \N \N \N \N \N 4 +151 AA1 Mustermann Max \N \N \N \N \N \N \N \N \N 4 +129 5250 BOUALI AMAR aide-pâtissier/ cuisinier 1980-02-20 \N \N \N \N \N \N \N 1 +139 5540 DELL'AVERSANA Shree cuisinier \N \N \N \N \N \N \N \N 1 +140 7099 MARZOUK Hassan pizzaiolo \N \N \N \N \N \N \N \N 1 +142 5600 DOS SANTOS MORENO Alcinda plongeuse 1960-12-26 \N \N \N \N \N \N \N 1 +143 5515 DA LUZ CANDIDA plongeuse \N \N \N \N \N \N \N \N 1 +141 \N IBRAHIMI Blade APPRENTI EN CUISINE \N \N \N \N \N \N \N \N 1 +137 7951 SANTORO DAVIDE Cuisinier \N \N \N \N \N \N \N \N 1 \. @@ -1623,56 +2620,58 @@ COPY portanova.staff (id, staffnumber, surname, prename, job, birthdate, entryda -- Data for Name: staffcontract; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id_staffgroup) FROM stdin; -39 39 2015-07-01 64.8750000000000000 15 \N -40 40 2011-10-01 86.5000000000000000 20 \N -11 11 2000-01-01 129.7500000000000000 30 \N -43 43 2000-01-01 129.7500000000000000 30 \N -6 6 2000-01-01 173.0000000000000000 40 \N -10 10 2000-01-01 173.0000000000000000 40 \N -12 12 2000-01-01 173.0000000000000000 40 \N -13 13 2000-01-01 173.0000000000000000 40 \N -14 14 2000-01-01 173.0000000000000000 40 \N -17 17 2000-01-01 173.0000000000000000 40 \N -19 19 2000-01-01 173.0000000000000000 40 \N -25 25 2000-01-01 173.0000000000000000 40 \N -30 30 2000-01-01 173.0000000000000000 40 \N -31 31 2000-01-01 173.0000000000000000 40 \N -36 36 2000-01-01 173.0000000000000000 40 \N -37 37 2000-01-01 173.0000000000000000 40 \N -41 41 2000-01-01 173.0000000000000000 40 \N -42 42 2000-01-01 173.0000000000000000 40 \N -44 44 2000-01-01 173.0000000000000000 40 \N -45 45 2000-01-01 173.0000000000000000 40 \N -46 1 2020-01-06 \N 40 3 -47 1 2020-02-10 \N 40 3 -48 1 2019-12-02 \N 40 3 -49 1 2019-12-02 \N 40 1 -1 1 2015-06-22 173.0000000000000000 40 \N -2 2 2005-04-19 173.0000000000000000 40 \N -3 3 2007-08-14 173.0000000000000000 40 \N -4 4 2015-04-01 173.0000000000000000 40 \N -5 5 2015-03-10 173.0000000000000000 40 \N -7 7 2015-11-09 173.0000000000000000 40 \N -8 8 2016-02-13 173.0000000000000000 40 \N -9 9 2016-01-18 173.0000000000000000 40 \N -15 15 2014-11-15 173.0000000000000000 40 \N -16 16 2015-10-08 173.0000000000000000 40 \N -18 18 2016-05-30 173.0000000000000000 40 \N -20 20 2015-12-01 173.0000000000000000 40 \N -21 21 2005-01-08 173.0000000000000000 40 \N -22 22 2014-04-15 173.0000000000000000 40 \N -23 23 2013-01-07 173.0000000000000000 40 \N -24 24 2005-05-01 173.0000000000000000 40 \N -26 26 2008-07-10 173.0000000000000000 40 \N -27 27 2013-01-07 173.0000000000000000 40 \N -28 28 2012-10-03 173.0000000000000000 40 \N -29 29 2015-06-01 173.0000000000000000 40 \N -32 32 2006-10-23 173.0000000000000000 40 \N -33 33 1995-07-01 173.0000000000000000 40 \N -34 34 1992-03-15 173.0000000000000000 40 \N -35 35 2011-07-05 173.0000000000000000 40 \N -38 38 2010-10-04 173.0000000000000000 40 \N +COPY portanova.staffcontract (id, id_staff, startdate, id_staffgroup, weekdays, enddate, id_workplan, weekhours) FROM stdin; +69 130 2005-01-08 1 6 \N 6 40:00:00 +90 132 2020-01-01 1 6 2020-01-15 6 40:00:00 +71 133 2013-01-07 1 6 \N 6 40:00:00 +85 121 2020-01-01 2 6 2020-07-31 6 40:00:00 +70 131 1995-07-01 1 6 \N 6 20:00:00 +77 108 2020-01-06 2 6 \N 6 40:00:00 +108 129 2019-07-15 1 6 \N 6 40:00:00 +82 117 2020-05-01 2 6 \N 1 40:00:00 +72 135 2006-10-23 1 6 \N 6 40:00:00 +73 136 1992-03-15 1 6 \N 6 40:00:00 +79 111 2020-01-01 2 6 \N 6 40:00:00 +87 126 2020-01-01 1 6 2019-05-31 6 40:00:00 +88 127 2020-01-01 1 6 \N 6 40:00:00 +89 128 2020-01-01 1 6 \N 6 40:00:00 +56 103 2014-03-01 4 6 \N 1 40:00:00 +57 104 2015-11-15 4 6 \N 1 30:00:00 +60 109 2005-04-19 2 6 \N 1 40:00:00 +61 113 2016-05-19 2 6 \N 1 40:00:00 +91 134 2020-01-01 1 6 \N 6 40:00:00 +62 114 2007-08-14 2 6 \N 1 40:00:00 +63 115 2013-05-01 2 6 \N 1 40:00:00 +64 118 2018-02-12 2 6 \N 1 40:00:00 +75 102 2020-01-01 4 6 \N 1 40:00:00 +78 110 2020-01-01 2 6 \N 1 40:00:00 +80 112 2020-01-01 2 6 2020-05-31 1 40:00:00 +81 116 2020-01-01 2 6 2019-02-28 1 40:00:00 +83 119 2020-01-01 2 6 \N 1 40:00:00 +84 120 2020-01-01 2 6 2019-03-31 1 40:00:00 +93 138 2020-01-01 1 6 2020-06-30 6 40:00:00 +66 124 2016-04-01 2 6 2019-05-31 1 12:30:00 +99 145 2020-01-01 2 6 \N 6 40:00:00 +58 105 2011-10-01 2 6 \N 6 40:00:00 +59 106 2015-07-01 2 6 \N 1 12:30:00 +65 122 2015-10-15 2 6 \N 1 40:00:00 +76 107 2020-01-01 2 6 2019-07-31 1 40:00:00 +86 123 2020-01-01 2 6 2017-03-31 1 40:00:00 +100 146 2020-01-01 2 6 \N 1 40:00:00 +101 147 2020-01-01 2 6 2020-08-31 1 40:00:00 +102 148 2020-01-01 2 6 \N 1 40:00:00 +103 149 2020-01-01 2 6 \N 1 40:00:00 +104 150 2020-01-01 2 6 2019-07-31 1 40:00:00 +67 125 2003-10-01 4 6 \N 1 20:00:00 +107 151 2020-02-01 4 6 \N 6 40:00:00 +105 129 2018-11-15 1 6 2019-06-15 6 40:00:00 +94 139 2020-01-01 1 6 2020-09-30 6 40:00:00 +95 140 2020-01-01 1 6 2020-01-31 6 40:00:00 +74 142 2014-04-15 1 6 \N 6 40:00:00 +97 143 2020-01-01 1 6 \N 6 40:00:00 +98 144 2020-01-01 1 6 2020-03-31 6 40:00:00 +96 141 2020-01-01 1 6 2022-08-31 6 40:00:00 +92 137 2020-01-01 1 6 2019-07-31 6 40:00:00 \. @@ -1680,18 +2679,5056 @@ COPY portanova.staffcontract (id, id_staff, startdate, monthhours, weekhours, id -- Data for Name: staffgroups; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffgroups (id, groupname, groupcolor) FROM stdin; -1 cuisine \N -2 service \N -3 caisse \N +COPY portanova.staffgroups (id, groupname, groupcolor, editoruser_ids, isdefault) FROM stdin; +1 Cuisine \N ["2","4"] \N +2 Service \N ["2","4"] \N +4 Administration \N ["2","4"] t \. -- --- Data for Name: stafftimetracks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Data for Name: staffreportperiod; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperiod (id, id_reportperiod, id_staff, workhours, contracthours, totalhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; +1081 29 149 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +992 27 146 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1082 29 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1083 29 121 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1084 29 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1085 29 119 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1086 29 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1087 29 147 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1088 29 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1089 29 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N +1090 29 151 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1091 29 138 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1092 29 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1093 29 134 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +993 27 132 88:00:00 93:20:00 88:00:00 00:00:00 00:00:00 -05:20:00 \N +994 27 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +995 27 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +996 27 112 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +997 27 108 280:00:00 280:00:00 280:00:00 00:00:00 00:00:00 00:00:00 \N +998 27 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +999 27 127 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1000 27 149 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1001 27 103 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1002 27 121 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1003 27 125 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1004 27 119 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1005 27 113 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1006 27 147 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1007 27 131 320:00:00 160:00:00 320:00:00 00:00:00 00:00:00 160:00:00 \N +1008 27 104 320:00:00 240:00:00 320:00:00 00:00:00 00:00:00 80:00:00 \N +1009 27 151 120:00:00 133:20:00 120:00:00 00:00:00 00:00:00 -13:20:00 \N +1010 27 138 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1011 27 105 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1012 27 134 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1013 27 144 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1014 27 102 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1015 27 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1016 27 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1017 27 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1018 27 111 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1019 27 128 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1020 27 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1021 27 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1022 27 140 184:00:00 186:40:00 184:00:00 00:00:00 00:00:00 -02:40:00 \N +1023 27 139 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1024 27 141 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1025 27 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1026 27 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N +1027 27 110 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1028 27 145 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1029 27 148 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1030 27 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +956 27 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1032 27 143 304:00:00 313:20:00 304:00:00 00:00:00 00:00:00 -09:20:00 \N +1074 29 146 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1075 29 115 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1076 29 114 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1077 29 112 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1078 29 108 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1079 29 135 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1080 29 127 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1094 29 144 216:00:00 213:20:00 216:00:00 00:00:00 00:00:00 02:40:00 \N +1095 29 102 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1096 29 109 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1097 29 118 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1098 29 133 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1099 29 111 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1100 29 128 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1101 29 142 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1102 29 136 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1103 29 139 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1104 29 141 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1105 29 122 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1106 29 106 320:00:00 100:00:00 320:00:00 00:00:00 00:00:00 220:00:00 \N +1107 29 110 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1108 29 145 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1109 29 148 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1110 29 130 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1111 29 129 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +1112 29 143 320:00:00 320:00:00 320:00:00 00:00:00 00:00:00 00:00:00 \N +\. + + -- +-- Data for Name: staffreportperioddays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperioddays (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, contracthours, id_staffgroup, id_vacancytype, daytype, workhours, recuperationhours, trackedhours, id_reportperiod, dayhours, id_recuperationtype, interruptionhours) FROM stdin; +988797 146 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988798 146 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988799 146 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988800 146 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988801 146 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988802 146 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988803 146 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988804 146 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988805 146 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993102 115 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993103 115 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993104 115 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993105 115 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993106 115 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993107 115 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993131 115 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993132 115 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993133 115 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995247 114 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995248 114 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995249 114 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995250 114 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995251 114 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995252 114 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995253 114 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995254 114 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995255 114 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995256 114 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995257 114 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995258 114 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995259 114 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995260 114 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995261 114 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995262 114 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995263 114 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995264 114 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995265 114 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995266 114 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079166 146 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079167 146 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079168 146 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079169 146 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +995267 114 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995268 114 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995269 114 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995270 114 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995271 114 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995272 114 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995273 114 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995274 114 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995275 114 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995276 114 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997427 112 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997428 112 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997429 112 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997430 112 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997431 112 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997432 112 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997433 112 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997434 112 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997435 112 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997436 112 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997437 112 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999560 108 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999561 108 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999562 108 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999563 108 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999564 108 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999565 108 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999566 108 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999567 108 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999568 108 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999569 108 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999570 108 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999571 108 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999572 108 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999573 108 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079170 146 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079171 146 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079172 146 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079173 146 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +999574 108 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999575 108 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999581 108 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001724 135 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001725 135 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001726 135 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001727 135 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001728 135 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001729 135 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001730 135 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001731 135 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001732 135 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001733 135 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001734 135 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001735 135 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001736 135 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001737 135 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001738 135 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001739 135 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001740 135 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001741 135 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003860 127 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003861 127 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003862 127 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003863 127 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003864 127 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003865 127 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003866 127 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003867 127 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003868 127 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003869 127 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003870 127 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003871 127 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003872 127 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003873 127 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006019 149 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006020 149 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079174 146 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079175 146 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079176 146 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079177 146 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1006021 149 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006022 149 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006023 149 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006024 149 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006025 149 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006026 149 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006027 149 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006028 149 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006029 149 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006030 149 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006031 149 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006032 149 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006033 149 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006034 149 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006035 149 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006036 149 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006037 149 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006038 149 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006039 149 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006040 149 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006041 149 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006042 149 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006043 149 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006044 149 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006045 149 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008165 103 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008166 103 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008167 103 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008168 103 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008169 103 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008170 103 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008171 103 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008172 103 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008173 103 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008174 103 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010312 121 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079178 146 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079179 146 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079180 146 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079181 146 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079182 146 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1010313 121 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010314 121 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010315 121 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010316 121 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010317 121 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010318 121 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010319 121 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010320 121 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010321 121 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010322 121 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010323 121 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010324 121 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010325 121 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010326 121 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010327 121 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010328 121 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010329 121 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010330 121 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010331 121 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010332 121 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010333 121 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010334 121 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010335 121 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010336 121 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010337 121 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010338 121 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010339 121 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010340 121 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010341 121 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010342 121 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010343 121 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010344 121 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010345 121 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010346 121 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010347 121 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079183 146 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079184 146 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079185 146 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079186 146 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079187 146 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1010348 121 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010349 121 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012469 125 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012470 125 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012471 125 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012472 125 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012473 125 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012474 125 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012475 125 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012476 125 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012477 125 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012478 125 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014612 119 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014613 119 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014614 119 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014615 119 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014616 119 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014617 119 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014618 119 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014619 119 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014620 119 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014621 119 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014622 119 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014623 119 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014624 119 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014625 119 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014626 119 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014627 119 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014628 119 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014629 119 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014630 119 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014631 119 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014632 119 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014633 119 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014634 119 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079188 146 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079189 146 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079190 146 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079191 146 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1014635 119 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014636 119 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014637 119 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014638 119 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014639 119 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014640 119 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014641 119 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014642 119 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014643 119 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014644 119 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014645 119 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014646 119 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014647 119 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014648 119 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014649 119 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014650 119 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014651 119 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014652 119 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014653 119 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016773 113 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016774 113 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016775 113 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016776 113 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016777 113 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016778 113 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016779 113 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016780 113 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016781 113 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016782 113 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018917 147 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018918 147 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018919 147 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018920 147 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018921 147 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018922 147 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018923 147 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079192 146 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079193 146 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079194 146 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079195 146 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079196 146 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1018924 147 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018925 147 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018926 147 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018927 147 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018928 147 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018929 147 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018930 147 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018931 147 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018932 147 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018933 147 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018934 147 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018935 147 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018936 147 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018937 147 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018938 147 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018939 147 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018940 147 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018941 147 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018942 147 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018943 147 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018944 147 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018945 147 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018946 147 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018947 147 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018948 147 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018949 147 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018950 147 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018951 147 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018952 147 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018953 147 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018954 147 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021078 131 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021079 131 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021080 131 2020-01-25 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021081 131 2020-01-26 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079197 146 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079198 146 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079199 146 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079200 146 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079201 146 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1021082 131 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021083 131 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021107 131 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021108 131 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021109 131 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023223 104 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023224 104 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023225 104 2020-01-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023226 104 2020-01-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023227 104 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023228 104 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023229 104 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023230 104 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023231 104 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023232 104 2020-01-25 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023233 104 2020-01-26 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023234 104 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023235 104 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023236 104 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023237 104 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023238 104 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023239 104 2020-02-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023240 104 2020-02-02 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023241 104 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023242 104 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023243 104 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023244 104 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023245 104 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023246 104 2020-02-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023247 104 2020-02-09 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023248 104 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023249 104 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023250 104 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023251 104 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023252 104 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027530 138 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079202 146 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079203 146 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079204 146 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079205 146 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1027531 138 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027532 138 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027533 138 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027534 138 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027535 138 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027536 138 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027537 138 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027538 138 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027539 138 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027540 138 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027541 138 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027542 138 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027543 138 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027544 138 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027545 138 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027546 138 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027547 138 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027548 138 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027549 138 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027550 138 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027551 138 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027557 138 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029700 105 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029701 105 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029702 105 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029703 105 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029704 105 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029705 105 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029706 105 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029707 105 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029708 105 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029709 105 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029710 105 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029711 105 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029712 105 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029713 105 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079206 146 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079207 146 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079208 146 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079209 146 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079210 146 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1029714 105 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029715 105 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029716 105 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029717 105 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031836 134 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031837 134 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031838 134 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031839 134 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031840 134 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031841 134 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031842 134 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031843 134 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031844 134 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031845 134 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031846 134 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031847 134 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031848 134 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031849 134 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033995 144 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033996 144 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033997 144 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033998 144 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033999 144 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034000 144 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034001 144 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034002 144 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034003 144 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034004 144 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034005 144 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034006 144 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034007 144 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034008 144 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034009 144 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034010 144 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034011 144 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079211 146 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079212 146 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079213 146 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079214 146 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079215 146 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1034012 144 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034013 144 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034014 144 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034015 144 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034016 144 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034017 144 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034018 144 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034019 144 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1034020 144 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1034021 144 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036141 102 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036142 102 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036143 102 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036144 102 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036145 102 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036146 102 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036147 102 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036148 102 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036149 102 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036150 102 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038288 109 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038289 109 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038290 109 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038291 109 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038292 109 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038293 109 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038294 109 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038295 109 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038296 109 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038297 109 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038298 109 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038299 109 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038300 109 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038301 109 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038302 109 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038303 109 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038304 109 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079216 115 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079217 115 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079218 115 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079219 115 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1038305 109 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038306 109 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038307 109 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038308 109 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038309 109 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038310 109 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038311 109 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038312 109 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038313 109 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038314 109 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038315 109 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038316 109 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038317 109 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038318 109 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038319 109 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038320 109 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038321 109 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038322 109 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038323 109 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038324 109 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038325 109 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040445 118 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040446 118 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040447 118 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040448 118 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040449 118 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040450 118 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040451 118 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040452 118 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040453 118 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040454 118 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042588 133 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042589 133 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042590 133 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079220 115 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079221 115 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079222 115 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079223 115 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079224 115 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1042591 133 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042592 133 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042593 133 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042594 133 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042595 133 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042596 133 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042597 133 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042598 133 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042599 133 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042600 133 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042601 133 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042602 133 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042603 133 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042604 133 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042605 133 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042606 133 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042607 133 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042608 133 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042609 133 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042610 133 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042611 133 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042612 133 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042613 133 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042614 133 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042615 133 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042616 133 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042617 133 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042618 133 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042619 133 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042620 133 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042621 133 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042622 133 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042623 133 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042624 133 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042625 133 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079225 115 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079226 115 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079227 115 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079228 115 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079229 115 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1042626 133 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042627 133 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042628 133 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042629 133 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044749 111 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044750 111 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044751 111 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044752 111 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044753 111 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044754 111 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044755 111 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044756 111 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044757 111 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044758 111 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046893 128 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046894 128 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046895 128 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046896 128 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046897 128 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046898 128 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046899 128 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046900 128 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046901 128 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046902 128 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046903 128 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046904 128 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046905 128 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046906 128 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046907 128 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046908 128 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046909 128 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046910 128 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046911 128 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046912 128 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046913 128 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079230 115 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079231 115 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079232 115 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079233 115 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1046914 128 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046915 128 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046916 128 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046917 128 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046918 128 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046919 128 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046920 128 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046921 128 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046922 128 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046923 128 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046924 128 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046925 128 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046926 128 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046927 128 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046928 128 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046929 128 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046930 128 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049054 142 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049055 142 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049056 142 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049057 142 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049058 142 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049059 142 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049083 142 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049084 142 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049085 142 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051199 136 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051200 136 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051201 136 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051202 136 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051203 136 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051204 136 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051205 136 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051206 136 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051207 136 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051208 136 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051209 136 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079234 115 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079235 115 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079236 115 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079237 115 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1051210 136 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051211 136 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051212 136 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051213 136 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051214 136 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051215 136 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051216 136 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051217 136 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051218 136 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051219 136 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051220 136 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051221 136 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051222 136 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051223 136 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051224 136 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051225 136 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051226 136 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051227 136 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051228 136 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055506 139 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055507 139 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055508 139 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055509 139 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055510 139 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055511 139 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055512 139 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055513 139 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055514 139 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055515 139 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055516 139 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055517 139 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055518 139 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055519 139 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055520 139 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079238 115 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079239 115 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079240 115 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079241 115 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079242 115 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079243 115 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1055521 139 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055522 139 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055523 139 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055524 139 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055525 139 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055526 139 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055527 139 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055533 139 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057676 141 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057677 141 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057678 141 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057679 141 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057680 141 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057681 141 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057682 141 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057683 141 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057684 141 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057685 141 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057686 141 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057687 141 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057688 141 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057689 141 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057690 141 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057691 141 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057692 141 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057693 141 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059812 122 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059813 122 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059814 122 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059815 122 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059816 122 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059817 122 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059818 122 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059819 122 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059820 122 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059821 122 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059822 122 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079244 115 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079245 115 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079246 115 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079247 115 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1059823 122 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059824 122 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059825 122 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061971 106 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061972 106 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061973 106 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061974 106 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061975 106 2020-02-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061976 106 2020-02-02 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061977 106 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061978 106 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061979 106 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061980 106 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061981 106 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061982 106 2020-02-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061983 106 2020-02-09 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061984 106 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061985 106 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061986 106 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061987 106 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061988 106 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061989 106 2020-02-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061990 106 2020-02-16 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061991 106 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061992 106 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061993 106 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061994 106 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061995 106 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061996 106 2020-02-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061997 106 2020-02-23 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064117 110 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064118 110 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064119 110 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064120 110 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064121 110 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064122 110 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079248 115 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079249 115 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079250 115 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079251 115 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079252 115 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1064123 110 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064124 110 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064125 110 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064126 110 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066264 145 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066265 145 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066266 145 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066267 145 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066268 145 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066269 145 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066270 145 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066271 145 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066272 145 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066273 145 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066274 145 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066275 145 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066276 145 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066277 145 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066278 145 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066279 145 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066280 145 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066281 145 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066282 145 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066283 145 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066284 145 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066285 145 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066286 145 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066287 145 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066288 145 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066289 145 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066290 145 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066291 145 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066292 145 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066293 145 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066294 145 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079253 115 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079254 115 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079255 115 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079256 115 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1066295 145 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066296 145 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066297 145 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066298 145 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066299 145 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066300 145 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066301 145 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068421 148 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068422 148 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068423 148 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068424 148 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068425 148 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068426 148 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068427 148 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068428 148 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068429 148 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068430 148 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070564 130 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070565 130 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070566 130 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070567 130 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070568 130 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070569 130 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070570 130 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070571 130 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070572 130 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070573 130 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070574 130 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070575 130 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070576 130 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070577 130 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070578 130 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070579 130 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070580 130 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070581 130 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079257 115 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079258 115 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079259 115 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079260 115 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079261 115 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1070582 130 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070583 130 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070584 130 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070585 130 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070586 130 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070587 130 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070588 130 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070589 130 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070590 130 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070591 130 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070592 130 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070593 130 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070594 130 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070595 130 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070596 130 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070597 130 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070598 130 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070599 130 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070600 130 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070601 130 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070602 130 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070603 130 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070604 130 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070605 130 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914490 129 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914491 129 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914492 129 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914493 129 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914494 129 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914495 129 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914496 129 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914497 129 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914498 129 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914499 129 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079262 115 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079263 115 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079264 115 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079265 115 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079266 115 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +914500 129 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914501 129 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914502 129 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914503 129 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914504 129 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914505 129 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914506 129 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914507 129 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914508 129 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914509 129 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914510 129 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914511 129 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914512 129 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914513 129 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914514 129 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914515 129 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914516 129 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074877 143 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074878 143 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074879 143 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074880 143 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074881 143 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074882 143 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074883 143 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074884 143 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074885 143 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074886 143 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079160 146 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079161 146 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079162 146 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079163 146 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079164 146 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079165 146 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079267 115 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079268 115 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079269 115 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079270 115 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079271 115 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079272 114 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079273 114 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079274 114 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079275 114 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079276 114 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079277 114 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079278 114 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988776 146 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988777 146 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988778 146 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988779 146 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988780 146 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988781 146 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988782 146 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988783 146 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988784 146 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988785 146 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988786 146 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988787 146 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079279 114 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079280 114 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079281 114 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079282 114 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079283 114 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988788 146 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988789 146 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079284 114 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988790 146 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988791 146 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079285 114 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +988792 146 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988793 146 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079286 114 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988794 146 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988795 146 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988796 146 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988806 146 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988807 146 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988808 146 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988809 146 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988810 146 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988811 146 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988812 146 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988813 146 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988814 146 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988815 146 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988816 146 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988817 146 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988818 146 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988819 146 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988820 146 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988821 146 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988822 146 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +988823 146 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988824 146 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079287 114 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988825 146 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988826 146 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079288 114 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988827 146 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +988828 146 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079289 114 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +988829 146 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079290 114 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079291 114 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079292 114 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079293 114 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079294 114 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079295 114 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079296 114 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079297 114 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079298 114 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079299 114 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079300 114 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079301 114 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079302 114 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079303 114 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079304 114 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079305 114 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079306 114 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079307 114 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079308 114 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079309 114 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079310 114 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079311 114 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079312 114 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079313 114 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079314 114 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079315 114 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079316 114 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079317 114 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079318 114 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079319 114 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079320 114 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079321 114 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079322 114 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079323 114 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079324 114 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079325 114 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079326 114 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079327 114 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079328 112 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079329 112 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079330 112 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079331 112 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079332 112 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079333 112 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079334 112 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079335 112 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079336 112 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079337 112 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079338 112 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079339 112 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079340 112 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079341 112 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079342 112 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079343 112 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079344 112 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079345 112 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079346 112 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079347 112 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079348 112 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079349 112 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079350 112 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079351 112 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079352 112 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079353 112 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079354 112 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079355 112 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079356 112 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079357 112 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079358 112 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079359 112 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079360 112 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079361 112 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079362 112 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079363 112 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079364 112 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079365 112 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079366 112 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079367 112 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079368 112 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079369 112 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079370 112 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079371 112 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079372 112 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079373 112 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079374 112 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079375 112 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079376 112 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079377 112 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079378 112 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079379 112 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079380 112 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079381 112 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079382 112 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079383 112 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079384 108 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079385 108 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079386 108 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079387 108 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079388 108 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079389 108 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079390 108 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079391 108 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079392 108 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079393 108 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079394 108 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079395 108 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079396 108 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079397 108 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079398 108 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079399 108 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079400 108 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079401 108 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079402 108 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079403 108 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079404 108 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079405 108 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079406 108 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079407 108 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079408 108 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079409 108 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079410 108 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079411 108 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079412 108 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079413 108 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079414 108 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079415 108 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079416 108 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079417 108 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079418 108 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079419 108 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079420 108 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079421 108 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079422 108 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079423 108 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079424 108 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079425 108 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079426 108 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079427 108 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079428 108 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079429 108 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079430 108 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079431 108 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079432 108 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079433 108 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079434 108 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079435 108 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079436 108 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079437 108 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079438 108 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079439 108 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079440 135 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079441 135 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079442 135 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079443 135 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079444 135 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079445 135 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079446 135 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079447 135 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079448 135 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079449 135 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079450 135 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079451 135 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079452 135 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079453 135 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079454 135 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079455 135 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079456 135 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079457 135 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079458 135 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079459 135 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079460 135 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079461 135 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079462 135 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079463 135 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079464 135 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079465 135 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079466 135 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079467 135 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079468 135 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079469 135 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079470 135 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079471 135 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079472 135 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079473 135 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079474 135 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079475 135 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079476 135 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079477 135 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079478 135 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079479 135 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079480 135 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079481 135 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079482 135 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079483 135 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079484 135 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079485 135 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079486 135 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079487 135 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079488 135 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079489 135 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079490 135 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079491 135 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079492 135 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079493 135 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079494 135 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079495 135 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079496 127 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079497 127 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079498 127 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079499 127 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079500 127 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079501 127 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079502 127 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079503 127 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079504 127 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079505 127 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079506 127 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079507 127 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079508 127 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079509 127 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079510 127 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079511 127 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079512 127 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079513 127 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079514 127 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079515 127 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079516 127 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079517 127 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079518 127 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079519 127 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079520 127 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079521 127 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079522 127 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079523 127 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079524 127 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079525 127 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079526 127 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079527 127 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079528 127 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079529 127 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079530 127 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079531 127 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079532 127 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079533 127 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079534 127 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079535 127 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079536 127 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079537 127 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079538 127 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079539 127 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079540 127 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079541 127 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079542 127 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079543 127 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079544 127 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079545 127 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079546 127 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079547 127 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079548 127 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079549 127 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079550 127 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079551 127 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079552 149 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079553 149 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079554 149 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079555 149 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079556 149 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079557 149 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079558 149 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079559 149 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079560 149 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079561 149 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079562 149 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079563 149 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079564 149 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079565 149 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079566 149 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079567 149 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079568 149 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079569 149 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079570 149 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079571 149 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079572 149 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079573 149 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079574 149 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079575 149 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079576 149 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079577 149 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079578 149 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079579 149 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079580 149 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079581 149 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +990928 132 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990929 132 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990930 132 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990931 132 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990932 132 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990933 132 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990934 132 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990935 132 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990936 132 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990937 132 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990938 132 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990939 132 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +990940 132 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990941 132 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +990942 132 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079582 149 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079583 149 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079584 149 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079585 149 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079586 149 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079587 149 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079588 149 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079589 149 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079590 149 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079591 149 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079592 149 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079593 149 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079594 149 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079595 149 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079596 149 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079597 149 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079598 149 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079599 149 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079600 149 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079601 149 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079602 149 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079603 149 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079604 149 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079605 149 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079606 149 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079607 149 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079608 103 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079609 103 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079610 103 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079611 103 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079612 103 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079613 103 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079614 103 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079615 103 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079616 103 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079617 103 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079618 103 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079619 103 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079620 103 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079621 103 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079622 103 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079623 103 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079624 103 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079625 103 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079626 103 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079627 103 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079628 103 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079629 103 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079630 103 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079631 103 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079632 103 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079633 103 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079634 103 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079635 103 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079636 103 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079637 103 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079638 103 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079639 103 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079640 103 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079641 103 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079642 103 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079643 103 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079644 103 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079645 103 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079646 103 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079647 103 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079648 103 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079649 103 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079650 103 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079651 103 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079652 103 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079653 103 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079654 103 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079655 103 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079656 103 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079657 103 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079658 103 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079659 103 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079660 103 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079661 103 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079662 103 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079663 103 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079664 121 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079665 121 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079666 121 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079667 121 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079668 121 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079669 121 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079670 121 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079671 121 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079672 121 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079673 121 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079674 121 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079675 121 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079676 121 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079677 121 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079678 121 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079679 121 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079680 121 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079681 121 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079682 121 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079683 121 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079684 121 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079685 121 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079686 121 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079687 121 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079688 121 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079689 121 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079690 121 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079691 121 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079692 121 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079693 121 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079694 121 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079695 121 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079696 121 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079697 121 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079698 121 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079699 121 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079700 121 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079701 121 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079702 121 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079703 121 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079704 121 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079705 121 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079706 121 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079707 121 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079708 121 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079709 121 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079710 121 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079711 121 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079712 121 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079713 121 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079714 121 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079715 121 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079716 121 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079717 121 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079718 121 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079719 121 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079720 125 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079721 125 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079722 125 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079723 125 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079724 125 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079725 125 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079726 125 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079727 125 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079728 125 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079729 125 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079730 125 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079731 125 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079732 125 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079733 125 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079734 125 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079735 125 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079736 125 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079737 125 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079738 125 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079739 125 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079740 125 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079741 125 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079742 125 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079743 125 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079744 125 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079745 125 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079746 125 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079747 125 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079748 125 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079749 125 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079750 125 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079751 125 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079752 125 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079753 125 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079754 125 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079755 125 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079756 125 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079757 125 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079758 125 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079759 125 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079760 125 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079761 125 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079762 125 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079763 125 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079764 125 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079765 125 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079766 125 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079767 125 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079768 125 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079769 125 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079770 125 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079771 125 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079772 125 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079773 125 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079774 125 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079775 125 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079776 119 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079777 119 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079778 119 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079779 119 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079780 119 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079781 119 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079782 119 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079783 119 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079784 119 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079785 119 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079786 119 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079787 119 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079788 119 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079789 119 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079790 119 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079791 119 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079792 119 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079793 119 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079794 119 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079795 119 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079796 119 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079797 119 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079798 119 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079799 119 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079800 119 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079801 119 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079802 119 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079803 119 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079804 119 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079805 119 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079806 119 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079807 119 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079808 119 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079809 119 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079810 119 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079811 119 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079812 119 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079813 119 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079814 119 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079815 119 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079816 119 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079817 119 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079818 119 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079819 119 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079820 119 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079821 119 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079822 119 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079823 119 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079824 119 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079825 119 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079826 119 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079827 119 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079828 119 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079829 119 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079830 119 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079831 119 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079832 113 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079833 113 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079834 113 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079835 113 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079836 113 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079837 113 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079838 113 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079839 113 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079840 113 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079841 113 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993134 115 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993135 115 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079842 113 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079843 113 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079844 113 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079845 113 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079846 113 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079847 113 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079848 113 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079849 113 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079850 113 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079851 113 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079852 113 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079853 113 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079854 113 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079855 113 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079856 113 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079857 113 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079858 113 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079859 113 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079860 113 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079861 113 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079862 113 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079863 113 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079864 113 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079865 113 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079866 113 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079867 113 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079868 113 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079869 113 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079870 113 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079871 113 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079872 113 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079873 113 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079874 113 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079875 113 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079876 113 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079877 113 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079878 113 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079879 113 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079880 113 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079881 113 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079882 113 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079883 113 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079884 113 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079885 113 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079886 113 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079887 113 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079888 147 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993080 115 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993081 115 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993082 115 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993083 115 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993084 115 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993085 115 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993086 115 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993087 115 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993088 115 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993089 115 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993090 115 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993091 115 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993092 115 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993093 115 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079889 147 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079890 147 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079891 147 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079892 147 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993094 115 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993095 115 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079893 147 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993096 115 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993097 115 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079894 147 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993098 115 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993099 115 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079895 147 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993100 115 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993101 115 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079896 147 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993108 115 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993109 115 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993110 115 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993111 115 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993112 115 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993113 115 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993114 115 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993115 115 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993116 115 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993117 115 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993118 115 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993119 115 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993120 115 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993121 115 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993122 115 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079897 147 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993123 115 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993124 115 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079898 147 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993125 115 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +993126 115 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1079899 147 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +993127 115 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993128 115 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079900 147 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +993129 115 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +993130 115 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1079901 147 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079902 147 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079903 147 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079904 147 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079905 147 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079906 147 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079907 147 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079908 147 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079909 147 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079910 147 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079911 147 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079912 147 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079913 147 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079914 147 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079915 147 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079916 147 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079917 147 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079918 147 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079919 147 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079920 147 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079921 147 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079922 147 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079923 147 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079924 147 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079925 147 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079926 147 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079927 147 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079928 147 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079929 147 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079930 147 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079931 147 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079932 147 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079933 147 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079934 147 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079935 147 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079936 147 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079937 147 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079938 147 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079939 147 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079940 147 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079941 147 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1079942 147 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079943 147 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079944 131 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079945 131 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079946 131 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079947 131 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079948 131 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079949 131 2020-02-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079950 131 2020-03-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079951 131 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079952 131 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079953 131 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079954 131 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079955 131 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079956 131 2020-03-07 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079957 131 2020-03-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079958 131 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079959 131 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079960 131 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079961 131 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079962 131 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079963 131 2020-03-14 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079964 131 2020-03-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079965 131 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079966 131 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079967 131 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079968 131 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079969 131 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079970 131 2020-03-21 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079971 131 2020-03-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079972 131 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079973 131 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079974 131 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079975 131 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079976 131 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079977 131 2020-03-28 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079978 131 2020-03-29 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079979 131 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079980 131 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079981 131 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079982 131 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079983 131 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079984 131 2020-04-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079985 131 2020-04-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079986 131 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079987 131 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079988 131 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079989 131 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079990 131 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079991 131 2020-04-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079992 131 2020-04-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079993 131 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079994 131 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079995 131 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079996 131 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079997 131 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1079998 131 2020-04-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1079999 131 2020-04-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080000 104 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080001 104 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080002 104 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080003 104 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080004 104 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080005 104 2020-02-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080006 104 2020-03-01 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080007 104 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080008 104 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080009 104 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080010 104 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080011 104 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080012 104 2020-03-07 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080013 104 2020-03-08 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080014 104 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080015 104 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080016 104 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080017 104 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080018 104 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080019 104 2020-03-14 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080020 104 2020-03-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080021 104 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080022 104 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080023 104 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080024 104 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080025 104 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080026 104 2020-03-21 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080027 104 2020-03-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080028 104 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080029 104 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080030 104 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080031 104 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080032 104 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080033 104 2020-03-28 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080034 104 2020-03-29 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080035 104 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080036 104 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080037 104 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080038 104 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080039 104 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080040 104 2020-04-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080041 104 2020-04-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080042 104 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080043 104 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080044 104 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080045 104 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080046 104 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080047 104 2020-04-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080048 104 2020-04-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080049 104 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080050 104 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080051 104 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080052 104 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080053 104 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080054 104 2020-04-18 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080055 104 2020-04-19 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080056 151 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080057 151 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080058 151 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080059 151 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080060 151 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080061 151 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080062 151 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080063 151 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080064 151 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080065 151 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080066 151 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080067 151 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080068 151 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080069 151 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080070 151 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080071 151 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080072 151 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080073 151 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080074 151 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080075 151 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080076 151 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080077 151 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080078 151 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080079 151 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080080 151 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080081 151 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080082 151 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080083 151 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080084 151 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080085 151 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080086 151 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080087 151 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080088 151 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080089 151 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080090 151 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080091 151 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080092 151 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080093 151 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080094 151 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080095 151 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080096 151 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080097 151 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080098 151 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080099 151 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080100 151 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080101 151 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080102 151 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080103 151 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080104 151 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080105 151 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080106 151 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080107 151 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080108 151 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080109 151 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080110 151 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080111 151 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080112 138 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080113 138 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080114 138 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080115 138 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080116 138 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080117 138 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080118 138 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080119 138 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080120 138 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080121 138 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080122 138 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080123 138 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080124 138 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080125 138 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080126 138 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080127 138 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080128 138 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080129 138 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080130 138 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080131 138 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080132 138 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080133 138 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080134 138 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080135 138 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080136 138 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080137 138 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080138 138 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080139 138 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080140 138 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080141 138 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080142 138 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080143 138 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080144 138 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080145 138 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080146 138 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080147 138 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080148 138 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080149 138 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080150 138 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080151 138 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080152 138 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080153 138 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080154 138 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080155 138 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080156 138 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080157 138 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080158 138 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080159 138 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080160 138 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080161 138 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080162 138 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080163 138 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080164 138 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080165 138 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080166 138 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080167 138 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080168 105 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080169 105 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080170 105 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080171 105 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080172 105 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080173 105 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080174 105 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080175 105 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080176 105 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080177 105 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080178 105 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080179 105 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080180 105 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080181 105 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080182 105 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080183 105 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080184 105 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080185 105 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080186 105 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080187 105 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080188 105 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080189 105 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080190 105 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080191 105 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080192 105 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080193 105 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080194 105 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080195 105 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080196 105 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080197 105 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080198 105 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080199 105 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080200 105 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080201 105 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080202 105 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080203 105 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080204 105 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080205 105 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080206 105 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080207 105 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080208 105 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080209 105 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080210 105 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080211 105 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080212 105 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080213 105 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080214 105 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080215 105 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080216 105 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080217 105 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080218 105 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080219 105 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080220 105 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080221 105 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080222 105 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080223 105 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080224 134 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080225 134 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080226 134 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080227 134 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080228 134 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080229 134 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080230 134 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080231 134 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080232 134 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080233 134 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080234 134 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080235 134 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080236 134 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080237 134 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080238 134 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080239 134 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080240 134 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080241 134 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080242 134 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080243 134 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080244 134 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080245 134 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080246 134 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080247 134 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080248 134 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080249 134 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080250 134 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080251 134 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080252 134 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080253 134 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080254 134 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080255 134 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080256 134 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080257 134 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080258 134 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080259 134 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080260 134 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080261 134 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080262 134 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080263 134 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080264 134 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080265 134 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080266 134 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080267 134 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080268 134 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080269 134 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080270 134 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080271 134 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080272 134 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080273 134 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080274 134 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080275 134 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080276 134 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080277 134 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080278 134 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080279 134 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080280 144 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080281 144 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080282 144 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080283 144 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080284 144 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080285 144 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080286 144 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080287 144 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080288 144 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080289 144 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080290 144 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080291 144 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080292 144 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080293 144 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080294 144 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080295 144 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080296 144 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080297 144 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080298 144 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080299 144 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080300 144 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080301 144 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080302 144 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080303 144 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080304 144 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080305 144 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080306 144 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080307 144 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080308 144 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080309 144 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080310 144 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080311 144 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080312 144 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080313 144 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080314 144 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080315 144 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080316 144 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080317 102 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080318 102 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080319 102 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080320 102 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080321 102 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080322 102 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080323 102 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080324 102 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080325 102 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080326 102 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080327 102 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080328 102 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080329 102 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080330 102 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080331 102 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080332 102 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080333 102 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080334 102 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080335 102 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080336 102 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080337 102 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080338 102 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080339 102 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080340 102 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080341 102 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080342 102 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080343 102 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080344 102 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080345 102 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080346 102 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080347 102 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080348 102 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080349 102 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080350 102 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080351 102 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080352 102 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080353 102 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080354 102 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080355 102 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080356 102 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080357 102 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080358 102 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080359 102 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080360 102 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080361 102 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080362 102 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080363 102 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080364 102 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080365 102 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080366 102 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080367 102 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080368 102 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080369 102 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080370 102 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080371 102 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080372 102 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080373 109 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080374 109 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080375 109 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080376 109 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080377 109 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080378 109 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080379 109 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080380 109 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080381 109 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080382 109 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080383 109 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080384 109 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080385 109 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080386 109 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080387 109 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080388 109 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080389 109 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080390 109 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080391 109 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080392 109 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080393 109 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080394 109 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080395 109 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080396 109 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080397 109 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080398 109 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080399 109 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080400 109 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080401 109 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080402 109 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080403 109 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080404 109 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080405 109 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080406 109 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080407 109 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080408 109 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080409 109 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080410 109 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080411 109 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080412 109 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080413 109 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080414 109 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080415 109 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080416 109 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080417 109 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080418 109 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080419 109 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080420 109 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080421 109 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080422 109 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080423 109 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080424 109 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080425 109 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080426 109 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080427 109 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080428 109 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080429 118 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080430 118 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080431 118 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080432 118 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080433 118 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080434 118 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080435 118 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080436 118 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080437 118 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080438 118 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080439 118 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080440 118 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080441 118 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080442 118 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080443 118 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080444 118 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080445 118 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080446 118 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080447 118 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080448 118 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080449 118 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080450 118 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +995286 114 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995287 114 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080451 118 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080452 118 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080453 118 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080454 118 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080455 118 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080456 118 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080457 118 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080458 118 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080459 118 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080460 118 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080461 118 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080462 118 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080463 118 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080464 118 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080465 118 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080466 118 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080467 118 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080468 118 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080469 118 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080470 118 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080471 118 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080472 118 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080473 118 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080474 118 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080475 118 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080476 118 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080477 118 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080478 118 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080479 118 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080480 118 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080481 118 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080482 118 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080483 118 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080484 118 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080485 133 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080486 133 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080487 133 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080488 133 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080489 133 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080490 133 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080491 133 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080492 133 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080493 133 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080494 133 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080495 133 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080496 133 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080497 133 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080498 133 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080499 133 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080500 133 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080501 133 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080502 133 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080503 133 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080504 133 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080505 133 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080506 133 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080507 133 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080508 133 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080509 133 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080510 133 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080511 133 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080512 133 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080513 133 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080514 133 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080515 133 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080516 133 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080517 133 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080518 133 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080519 133 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080520 133 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080521 133 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080522 133 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080523 133 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080524 133 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080525 133 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080526 133 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080527 133 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080528 133 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080529 133 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080530 133 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080531 133 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080532 133 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080533 133 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080534 133 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080535 133 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080536 133 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080537 133 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080538 133 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080539 133 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080540 133 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080541 111 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080542 111 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080543 111 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080544 111 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080545 111 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080546 111 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080547 111 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080548 111 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080549 111 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080550 111 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080551 111 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080552 111 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080553 111 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080554 111 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080555 111 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080556 111 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080557 111 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080558 111 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080559 111 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080560 111 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080561 111 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080562 111 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080563 111 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080564 111 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080565 111 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080566 111 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080567 111 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080568 111 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080569 111 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080570 111 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080571 111 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080572 111 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080573 111 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080574 111 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080575 111 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080576 111 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080577 111 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080578 111 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080579 111 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080580 111 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080581 111 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080582 111 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080583 111 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080584 111 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080585 111 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080586 111 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080587 111 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080588 111 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080589 111 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080590 111 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080591 111 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080592 111 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080593 111 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080594 111 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080595 111 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080596 111 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080597 128 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080598 128 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080599 128 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995232 114 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080600 128 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995233 114 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995234 114 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080601 128 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995235 114 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080602 128 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080603 128 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080604 128 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080605 128 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080606 128 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080607 128 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080608 128 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080609 128 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080610 128 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080611 128 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080612 128 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080613 128 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995236 114 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995237 114 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080614 128 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995238 114 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995239 114 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080615 128 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995240 114 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995241 114 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080616 128 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +995242 114 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995243 114 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080617 128 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +995244 114 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995245 114 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995246 114 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995277 114 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080618 128 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995278 114 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995279 114 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080619 128 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995280 114 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995281 114 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080620 128 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995282 114 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +995283 114 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1080621 128 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +995284 114 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +995285 114 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1080622 128 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080623 128 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080624 128 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080625 128 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080626 128 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080627 128 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080628 128 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080629 128 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080630 128 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080631 128 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080632 128 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080633 128 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080634 128 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080635 128 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080636 128 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080637 128 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080638 128 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080639 128 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080640 128 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080641 128 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080642 128 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080643 128 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080644 128 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080645 128 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080646 128 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080647 128 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080648 128 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080649 128 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080650 128 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080651 128 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080652 128 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080653 142 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080654 142 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080655 142 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080656 142 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080657 142 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080658 142 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080659 142 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080660 142 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080661 142 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080662 142 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080663 142 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080664 142 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080665 142 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080666 142 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080667 142 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080668 142 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080669 142 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080670 142 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080671 142 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080672 142 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080673 142 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080674 142 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080675 142 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080676 142 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080677 142 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080678 142 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080679 142 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080680 142 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080681 142 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080682 142 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080683 142 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080684 142 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080685 142 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080686 142 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080687 142 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080688 142 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080689 142 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080690 142 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080691 142 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080692 142 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080693 142 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080694 142 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080695 142 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080696 142 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080697 142 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080698 142 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080699 142 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080700 142 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080701 142 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080702 142 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080703 142 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080704 142 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080705 142 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080706 142 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080707 142 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080708 142 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080709 136 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080710 136 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080711 136 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080712 136 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080713 136 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080714 136 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080715 136 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080716 136 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080717 136 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080718 136 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080719 136 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080720 136 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080721 136 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080722 136 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080723 136 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080724 136 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080725 136 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080726 136 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080727 136 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080728 136 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080729 136 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080730 136 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080731 136 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080732 136 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080733 136 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080734 136 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080735 136 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080736 136 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080737 136 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080738 136 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080739 136 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080740 136 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080741 136 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080742 136 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080743 136 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080744 136 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080745 136 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080746 136 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080747 136 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080748 136 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080749 136 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080750 136 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080751 136 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080752 136 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080753 136 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080754 136 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080755 136 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080756 136 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080757 136 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080758 136 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080759 136 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080760 136 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080761 136 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080762 136 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080763 136 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080764 136 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080765 139 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080766 139 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080767 139 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080768 139 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080769 139 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080770 139 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080771 139 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080772 139 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080773 139 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080774 139 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080775 139 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080776 139 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080777 139 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080778 139 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080779 139 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080780 139 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080781 139 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080782 139 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080783 139 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080784 139 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080785 139 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080786 139 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080787 139 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080788 139 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080789 139 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080790 139 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080791 139 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080792 139 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080793 139 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080794 139 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080795 139 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080796 139 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080797 139 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080798 139 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080799 139 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080800 139 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080801 139 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080802 139 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080803 139 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080804 139 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080805 139 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080806 139 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080807 139 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080808 139 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080809 139 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080810 139 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080811 139 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080812 139 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080813 139 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080814 139 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080815 139 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080816 139 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080817 139 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080818 139 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080819 139 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080820 139 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080821 141 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080822 141 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080823 141 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080824 141 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080825 141 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080826 141 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080827 141 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080828 141 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080829 141 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080830 141 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080831 141 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080832 141 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080833 141 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080834 141 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080835 141 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080836 141 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080837 141 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080838 141 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080839 141 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080840 141 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080841 141 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080842 141 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080843 141 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080844 141 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080845 141 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080846 141 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080847 141 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080848 141 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080849 141 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080850 141 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080851 141 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080852 141 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080853 141 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080854 141 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080855 141 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080856 141 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080857 141 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080858 141 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080859 141 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080860 141 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080861 141 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080862 141 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080863 141 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080864 141 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080865 141 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080866 141 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080867 141 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080868 141 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080869 141 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080870 141 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080871 141 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080872 141 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080873 141 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080874 141 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1080875 141 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080876 141 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080877 122 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080878 122 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080879 122 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080880 122 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080881 122 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080882 122 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080883 122 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080884 122 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080885 122 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080886 122 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080887 122 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080888 122 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080889 122 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080890 122 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080891 122 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080892 122 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080893 122 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080894 122 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080895 122 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080896 122 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080897 122 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080898 122 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080899 122 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080900 122 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080901 122 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080902 122 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080903 122 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080904 122 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080905 122 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080906 122 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080907 122 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080908 122 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080909 122 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080910 122 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080911 122 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080912 122 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080913 122 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080914 122 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080915 122 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080916 122 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080917 122 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080918 122 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080919 122 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080920 122 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080921 122 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080922 122 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080923 122 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080924 122 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080925 122 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080926 122 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080927 122 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080928 122 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080929 122 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080930 122 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080931 122 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080932 122 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080933 106 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080934 106 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080935 106 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080936 106 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080937 106 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080938 106 2020-02-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080939 106 2020-03-01 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080940 106 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080941 106 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080942 106 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080943 106 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080944 106 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080945 106 2020-03-07 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080946 106 2020-03-08 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080947 106 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080948 106 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080949 106 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080950 106 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080951 106 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080952 106 2020-03-14 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080953 106 2020-03-15 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080954 106 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080955 106 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080956 106 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080957 106 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080958 106 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080959 106 2020-03-21 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080960 106 2020-03-22 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080961 106 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080962 106 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080963 106 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080964 106 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080965 106 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080966 106 2020-03-28 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080967 106 2020-03-29 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080968 106 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080969 106 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080970 106 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080971 106 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080972 106 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080973 106 2020-04-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080974 106 2020-04-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080975 106 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080976 106 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080977 106 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080978 106 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080979 106 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080980 106 2020-04-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080981 106 2020-04-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080982 106 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080983 106 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080984 106 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080985 106 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080986 106 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080987 106 2020-04-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080988 106 2020-04-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080989 110 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080990 110 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080991 110 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080992 110 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080993 110 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080994 110 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080995 110 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1080996 110 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080997 110 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080998 110 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1080999 110 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081000 110 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081001 110 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081002 110 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081003 110 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081004 110 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081005 110 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081006 110 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081007 110 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081008 110 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081009 110 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081010 110 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081011 110 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081012 110 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081013 110 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081014 110 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081015 110 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081016 110 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081017 110 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081018 110 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081019 110 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081020 110 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081021 110 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081022 110 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081023 110 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081024 110 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081025 110 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081026 110 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081027 110 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081028 110 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081029 110 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081030 110 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081031 110 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081032 110 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081033 110 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081034 110 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081035 110 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081036 110 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081037 110 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081038 110 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081039 110 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081040 110 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081041 110 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081042 110 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081043 110 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081044 110 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081045 145 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081046 145 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081047 145 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081048 145 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081049 145 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081050 145 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081051 145 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081052 145 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081053 145 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081054 145 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081055 145 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081056 145 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081057 145 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081058 145 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081059 145 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081060 145 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081061 145 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081062 145 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081063 145 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081064 145 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081065 145 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081066 145 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081067 145 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081068 145 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081069 145 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081070 145 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081071 145 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081072 145 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081073 145 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081074 145 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081075 145 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081076 145 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081077 145 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081078 145 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081079 145 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081080 145 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081081 145 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081082 145 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081083 145 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081084 145 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081085 145 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081086 145 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081087 145 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081088 145 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081089 145 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081090 145 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081091 145 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081092 145 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081093 145 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081094 145 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081095 145 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081096 145 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081097 145 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081098 145 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081099 145 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081100 145 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081101 148 2020-02-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081102 148 2020-02-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081103 148 2020-02-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081104 148 2020-02-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081105 148 2020-02-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081106 148 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081107 148 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081108 148 2020-03-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081109 148 2020-03-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081110 148 2020-03-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081111 148 2020-03-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081112 148 2020-03-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081113 148 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081114 148 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081115 148 2020-03-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081116 148 2020-03-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081117 148 2020-03-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081118 148 2020-03-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081119 148 2020-03-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081120 148 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081121 148 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081122 148 2020-03-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081123 148 2020-03-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081124 148 2020-03-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081125 148 2020-03-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081126 148 2020-03-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081127 148 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081128 148 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081129 148 2020-03-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081130 148 2020-03-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081131 148 2020-03-25 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081132 148 2020-03-26 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081133 148 2020-03-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081134 148 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081135 148 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081136 148 2020-03-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081137 148 2020-03-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081138 148 2020-04-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081139 148 2020-04-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081140 148 2020-04-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081141 148 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081142 148 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081143 148 2020-04-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081144 148 2020-04-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081145 148 2020-04-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081146 148 2020-04-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081147 148 2020-04-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081148 148 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081149 148 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081150 148 2020-04-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081151 148 2020-04-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081152 148 2020-04-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081153 148 2020-04-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081154 148 2020-04-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 01:00:00 +1081155 148 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081156 148 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081157 130 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081158 130 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081159 130 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081160 130 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081161 130 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081162 130 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081163 130 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081164 130 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081165 130 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081166 130 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081167 130 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081168 130 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081169 130 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081170 130 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081171 130 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081172 130 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081173 130 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081174 130 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081175 130 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081176 130 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081177 130 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081178 130 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081179 130 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081180 130 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081181 130 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081182 130 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081183 130 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081184 130 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081185 130 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081186 130 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081187 130 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081188 130 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081189 130 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081190 130 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081191 130 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081192 130 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081193 130 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081194 130 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081195 130 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081196 130 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081197 130 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081198 130 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081199 130 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081200 130 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081201 130 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081202 130 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081203 130 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081204 130 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081205 130 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081206 130 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081207 130 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081208 130 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081209 130 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081210 130 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081211 130 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081212 130 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081213 129 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081214 129 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081215 129 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081216 129 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081217 129 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081218 129 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081219 129 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081220 129 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081221 129 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081222 129 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081223 129 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081224 129 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081225 129 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081226 129 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081227 129 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081228 129 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081229 129 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081230 129 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081231 129 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081232 129 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081233 129 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081234 129 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081235 129 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081236 129 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081237 129 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081238 129 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081239 129 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081240 129 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081241 129 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081242 129 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081243 129 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081244 129 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081245 129 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081246 129 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081247 129 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081248 129 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081249 129 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081250 129 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081251 129 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081252 129 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081253 129 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081254 129 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081255 129 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081256 129 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081257 129 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081258 129 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081259 129 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081260 129 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081261 129 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081262 129 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081263 129 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081264 129 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081265 129 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081266 129 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081267 129 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081268 129 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081269 143 2020-02-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081270 143 2020-02-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081271 143 2020-02-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081272 143 2020-02-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081273 143 2020-02-28 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081274 143 2020-02-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081275 143 2020-03-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081276 143 2020-03-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081277 143 2020-03-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081278 143 2020-03-04 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081279 143 2020-03-05 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081280 143 2020-03-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081281 143 2020-03-07 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081282 143 2020-03-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081283 143 2020-03-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081284 143 2020-03-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081285 143 2020-03-11 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081286 143 2020-03-12 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081287 143 2020-03-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081288 143 2020-03-14 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081289 143 2020-03-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081290 143 2020-03-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081291 143 2020-03-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081292 143 2020-03-18 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081293 143 2020-03-19 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081294 143 2020-03-20 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081295 143 2020-03-21 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081296 143 2020-03-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081297 143 2020-03-23 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081298 143 2020-03-24 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081299 143 2020-03-25 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081300 143 2020-03-26 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081301 143 2020-03-27 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081302 143 2020-03-28 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081303 143 2020-03-29 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081304 143 2020-03-30 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081305 143 2020-03-31 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081306 143 2020-04-01 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081307 143 2020-04-02 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081308 143 2020-04-03 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081309 143 2020-04-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081310 143 2020-04-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +1081311 143 2020-04-06 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081312 143 2020-04-07 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081313 143 2020-04-08 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081314 143 2020-04-09 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081315 143 2020-04-10 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +1081316 143 2020-04-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997384 112 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997385 112 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081317 143 2020-04-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997386 112 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997387 112 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1081318 143 2020-04-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997388 112 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997389 112 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081319 143 2020-04-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997390 112 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997391 112 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081320 143 2020-04-15 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997392 112 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997393 112 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081321 143 2020-04-16 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997394 112 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997395 112 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1081322 143 2020-04-17 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 29 08:00:00 \N 03:00:00 +997396 112 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997397 112 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081323 143 2020-04-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997398 112 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997399 112 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1081324 143 2020-04-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 29 00:00:00 \N 00:00:00 +997400 112 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997401 112 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997402 112 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997403 112 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997404 112 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997405 112 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997406 112 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997407 112 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997408 112 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997409 112 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997410 112 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997411 112 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997412 112 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997413 112 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997414 112 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997415 112 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997416 112 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997417 112 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997418 112 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997419 112 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997420 112 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997421 112 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997422 112 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997423 112 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +997424 112 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997425 112 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +997426 112 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999541 108 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999542 108 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999543 108 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999544 108 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999545 108 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999546 108 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999547 108 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999548 108 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999549 108 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999550 108 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999551 108 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999552 108 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999553 108 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999554 108 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999555 108 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999556 108 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999557 108 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999558 108 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999559 108 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999576 108 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999577 108 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999578 108 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999579 108 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999580 108 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999582 108 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999583 108 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999584 108 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999585 108 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999586 108 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999587 108 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +999588 108 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +999589 108 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001742 135 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001743 135 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001688 135 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001689 135 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001690 135 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001691 135 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001692 135 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001693 135 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001694 135 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001695 135 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001696 135 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001697 135 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001698 135 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001699 135 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001700 135 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001701 135 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001702 135 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001703 135 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001704 135 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001705 135 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001706 135 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001707 135 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001708 135 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001709 135 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001710 135 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001711 135 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001712 135 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001713 135 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001714 135 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001715 135 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001716 135 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001717 135 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001718 135 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001719 135 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001720 135 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1001721 135 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001722 135 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1001723 135 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003840 127 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003841 127 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003842 127 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003843 127 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003844 127 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003845 127 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003846 127 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003847 127 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003848 127 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003849 127 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003850 127 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003851 127 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003852 127 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003853 127 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003854 127 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003855 127 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003856 127 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003857 127 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003858 127 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003859 127 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003874 127 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003875 127 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003876 127 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003877 127 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003878 127 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003879 127 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003880 127 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003881 127 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003882 127 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003883 127 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003884 127 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003885 127 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003886 127 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003887 127 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003888 127 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003889 127 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003890 127 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003891 127 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1003892 127 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1003893 127 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005992 149 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005993 149 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005994 149 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005995 149 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005996 149 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1005997 149 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005998 149 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1005999 149 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006000 149 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006001 149 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006002 149 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006003 149 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006004 149 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006005 149 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006006 149 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006007 149 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006008 149 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006009 149 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006010 149 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006011 149 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006012 149 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006013 149 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006014 149 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006015 149 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1006016 149 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006017 149 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1006018 149 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008198 103 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008199 103 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008144 103 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008145 103 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008146 103 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008147 103 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008148 103 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008149 103 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008150 103 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008151 103 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008152 103 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008153 103 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008154 103 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008155 103 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008156 103 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008157 103 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008158 103 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008159 103 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008160 103 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008161 103 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008162 103 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008163 103 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008164 103 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008175 103 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008176 103 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008177 103 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008178 103 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008179 103 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008180 103 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008181 103 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008182 103 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008183 103 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008184 103 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008185 103 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008186 103 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008187 103 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008188 103 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008189 103 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008190 103 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008191 103 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008192 103 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008193 103 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008194 103 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008195 103 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1008196 103 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1008197 103 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010296 121 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010297 121 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010298 121 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010299 121 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010300 121 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010301 121 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010302 121 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010303 121 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010304 121 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010305 121 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010306 121 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010307 121 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1010308 121 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010309 121 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010310 121 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1010311 121 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012502 125 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012503 125 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012448 125 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012449 125 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012450 125 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012451 125 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012452 125 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012453 125 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012454 125 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012455 125 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012456 125 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012457 125 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012458 125 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012459 125 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012460 125 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012461 125 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012462 125 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012463 125 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012464 125 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012465 125 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012466 125 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012467 125 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012468 125 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012479 125 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012480 125 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012481 125 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012482 125 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012483 125 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012484 125 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012485 125 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012486 125 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012487 125 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012488 125 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012489 125 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012490 125 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012491 125 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012492 125 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012493 125 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012494 125 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012495 125 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012496 125 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012497 125 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012498 125 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012499 125 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1012500 125 2020-02-22 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1012501 125 2020-02-23 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014600 119 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014601 119 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014602 119 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014603 119 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014604 119 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014605 119 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014606 119 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014607 119 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014608 119 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014609 119 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1014610 119 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1014611 119 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016806 113 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016807 113 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016752 113 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016753 113 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016754 113 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016755 113 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016756 113 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016757 113 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016758 113 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016759 113 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016760 113 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016761 113 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016762 113 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016763 113 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016764 113 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016765 113 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016766 113 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016767 113 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016768 113 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016769 113 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016770 113 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016771 113 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016772 113 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016783 113 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016784 113 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016785 113 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016786 113 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016787 113 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016788 113 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016789 113 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016790 113 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016791 113 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016792 113 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016793 113 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016794 113 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016795 113 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016796 113 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016797 113 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016798 113 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016799 113 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016800 113 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016801 113 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016802 113 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016803 113 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1016804 113 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1016805 113 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018904 147 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018905 147 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018906 147 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018907 147 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018908 147 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018909 147 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018910 147 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018911 147 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018912 147 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018913 147 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018914 147 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018915 147 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018916 147 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018955 147 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1018956 147 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1018957 147 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021110 131 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021111 131 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021056 131 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021057 131 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021058 131 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021059 131 2020-01-04 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021060 131 2020-01-05 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021061 131 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021062 131 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021063 131 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021064 131 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021065 131 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021066 131 2020-01-11 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021067 131 2020-01-12 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021068 131 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021069 131 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021070 131 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021071 131 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021072 131 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021073 131 2020-01-18 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021074 131 2020-01-19 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021075 131 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021076 131 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021077 131 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021084 131 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021085 131 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021086 131 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021087 131 2020-02-01 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021088 131 2020-02-02 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021089 131 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021090 131 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021091 131 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021092 131 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021093 131 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021094 131 2020-02-08 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021095 131 2020-02-09 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021096 131 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021097 131 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021098 131 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021099 131 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021100 131 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021101 131 2020-02-15 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021102 131 2020-02-16 \N \N \N \N \N 00:00:00 03:20:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1021103 131 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021104 131 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021105 131 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1021106 131 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 03:20:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023262 104 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023263 104 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023208 104 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023209 104 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023210 104 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023211 104 2020-01-04 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023212 104 2020-01-05 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023213 104 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023214 104 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023215 104 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023216 104 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023217 104 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023218 104 2020-01-11 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023219 104 2020-01-12 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023220 104 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023221 104 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023222 104 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023253 104 2020-02-15 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023254 104 2020-02-16 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023255 104 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023256 104 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023257 104 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023258 104 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023259 104 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 05:00:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1023260 104 2020-02-22 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1023261 104 2020-02-23 \N \N \N \N \N 00:00:00 05:00:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025391 151 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025392 151 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025393 151 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025394 151 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025395 151 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025396 151 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025397 151 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025398 151 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025399 151 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025400 151 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025401 151 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025402 151 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025403 151 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025404 151 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025405 151 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025406 151 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025407 151 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025408 151 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025409 151 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025410 151 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025411 151 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1025412 151 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1025413 151 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027512 138 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027513 138 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027514 138 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027515 138 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027516 138 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027517 138 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027518 138 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027519 138 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027520 138 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027521 138 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027522 138 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027523 138 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027524 138 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027525 138 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027526 138 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027527 138 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027528 138 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027529 138 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027552 138 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027553 138 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027554 138 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027555 138 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027556 138 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027558 138 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027559 138 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027560 138 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027561 138 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027562 138 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027563 138 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1027564 138 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1027565 138 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029718 105 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029719 105 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029664 105 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029665 105 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029666 105 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029667 105 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029668 105 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029669 105 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029670 105 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029671 105 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029672 105 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029673 105 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029674 105 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029675 105 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029676 105 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029677 105 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029678 105 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029679 105 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029680 105 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029681 105 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029682 105 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029683 105 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029684 105 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029685 105 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029686 105 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029687 105 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029688 105 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029689 105 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029690 105 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029691 105 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029692 105 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029693 105 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029694 105 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029695 105 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029696 105 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1029697 105 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029698 105 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1029699 105 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031816 134 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031817 134 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031818 134 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031819 134 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031820 134 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031821 134 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031822 134 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031823 134 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031824 134 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031825 134 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031826 134 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031827 134 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031828 134 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031829 134 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031830 134 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031831 134 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031832 134 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031833 134 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031834 134 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031835 134 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031850 134 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031851 134 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031852 134 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031853 134 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031854 134 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031855 134 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031856 134 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031857 134 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031858 134 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031859 134 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031860 134 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031861 134 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031862 134 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031863 134 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031864 134 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031865 134 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031866 134 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031867 134 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1031868 134 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1031869 134 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033968 144 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033969 144 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033970 144 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033971 144 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033972 144 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033973 144 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033974 144 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033975 144 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033976 144 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033977 144 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033978 144 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033979 144 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033980 144 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033981 144 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033982 144 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033983 144 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033984 144 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033985 144 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033986 144 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033987 144 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033988 144 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033989 144 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033990 144 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033991 144 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1033992 144 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033993 144 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1033994 144 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036120 102 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036121 102 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036122 102 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036123 102 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036124 102 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036125 102 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036126 102 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036127 102 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036128 102 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036129 102 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036130 102 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036131 102 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036132 102 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036133 102 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036134 102 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036135 102 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036136 102 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036137 102 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036138 102 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036139 102 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036140 102 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036151 102 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036152 102 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036153 102 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036154 102 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036155 102 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036156 102 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036157 102 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036158 102 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036159 102 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036160 102 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036161 102 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036162 102 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036163 102 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036164 102 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036165 102 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036166 102 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036167 102 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036168 102 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036169 102 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036170 102 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036171 102 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1036172 102 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1036173 102 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038326 109 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038327 109 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038272 109 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038273 109 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038274 109 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038275 109 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038276 109 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038277 109 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038278 109 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038279 109 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038280 109 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038281 109 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038282 109 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038283 109 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1038284 109 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038285 109 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038286 109 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1038287 109 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040478 118 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040479 118 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040424 118 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040425 118 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040426 118 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040427 118 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040428 118 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040429 118 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040430 118 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040431 118 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040432 118 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040433 118 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040434 118 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040435 118 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040436 118 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040437 118 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040438 118 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040439 118 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040440 118 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040441 118 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040442 118 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040443 118 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040444 118 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040455 118 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040456 118 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040457 118 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040458 118 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040459 118 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040460 118 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040461 118 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040462 118 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040463 118 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040464 118 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040465 118 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040466 118 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040467 118 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040468 118 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040469 118 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040470 118 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040471 118 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040472 118 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040473 118 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040474 118 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040475 118 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1040476 118 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1040477 118 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042630 133 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042631 133 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042576 133 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042577 133 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042578 133 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042579 133 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042580 133 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042581 133 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042582 133 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042583 133 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042584 133 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042585 133 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1042586 133 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1042587 133 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044728 111 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044729 111 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044730 111 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044731 111 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044732 111 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044733 111 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044734 111 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044735 111 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044736 111 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044737 111 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044738 111 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044739 111 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044740 111 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044741 111 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044742 111 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044743 111 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044744 111 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044745 111 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044746 111 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044747 111 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044748 111 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044759 111 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044760 111 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044761 111 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044762 111 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044763 111 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044764 111 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044765 111 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044766 111 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044767 111 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044768 111 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044769 111 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044770 111 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044771 111 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044772 111 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044773 111 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044774 111 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044775 111 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044776 111 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044777 111 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044778 111 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044779 111 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1044780 111 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1044781 111 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046880 128 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046881 128 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046882 128 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046883 128 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046884 128 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046885 128 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046886 128 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046887 128 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046888 128 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046889 128 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046890 128 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046891 128 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046892 128 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046931 128 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1046932 128 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1046933 128 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049086 142 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049087 142 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049032 142 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049033 142 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049034 142 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049035 142 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049036 142 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049037 142 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049038 142 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049039 142 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049040 142 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049041 142 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049042 142 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049043 142 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049044 142 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049045 142 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049046 142 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049047 142 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049048 142 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049049 142 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049050 142 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049051 142 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049052 142 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049053 142 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049060 142 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049061 142 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049062 142 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049063 142 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049064 142 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049065 142 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049066 142 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049067 142 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049068 142 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049069 142 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049070 142 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049071 142 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049072 142 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049073 142 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049074 142 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049075 142 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049076 142 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049077 142 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049078 142 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1049079 142 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049080 142 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049081 142 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1049082 142 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051238 136 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051239 136 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051184 136 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051185 136 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051186 136 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051187 136 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051188 136 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051189 136 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051190 136 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051191 136 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051192 136 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051193 136 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051194 136 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051195 136 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051196 136 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051197 136 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051198 136 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051229 136 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051230 136 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051231 136 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051232 136 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051233 136 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051234 136 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051235 136 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1051236 136 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1051237 136 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053336 140 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053337 140 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053338 140 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053339 140 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053340 140 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053341 140 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053342 140 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053343 140 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053344 140 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053345 140 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053346 140 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053347 140 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053348 140 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053349 140 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053350 140 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053351 140 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053352 140 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053353 140 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053354 140 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053355 140 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053356 140 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053357 140 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053358 140 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053359 140 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053360 140 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053361 140 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1053362 140 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053363 140 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053364 140 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053365 140 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1053366 140 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055488 139 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055489 139 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055490 139 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055491 139 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055492 139 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055493 139 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055494 139 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055495 139 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055496 139 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055497 139 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055498 139 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055499 139 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055500 139 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055501 139 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055502 139 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055503 139 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055504 139 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055505 139 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055528 139 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055529 139 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055530 139 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055531 139 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055532 139 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055534 139 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055535 139 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055536 139 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055537 139 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055538 139 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055539 139 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1055540 139 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1055541 139 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057640 141 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057641 141 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057642 141 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057643 141 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057644 141 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057645 141 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057646 141 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057647 141 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057648 141 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057649 141 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057650 141 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057651 141 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057652 141 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057653 141 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057654 141 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057655 141 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057656 141 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057657 141 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057658 141 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057659 141 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057660 141 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057661 141 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057662 141 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057663 141 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057664 141 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057665 141 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057666 141 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057667 141 2020-01-28 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057668 141 2020-01-29 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057669 141 2020-01-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057670 141 2020-01-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057671 141 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057672 141 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1057673 141 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057674 141 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1057675 141 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059846 122 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059847 122 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059792 122 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059793 122 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059794 122 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059795 122 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059796 122 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059797 122 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059798 122 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059799 122 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059800 122 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059801 122 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059802 122 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059803 122 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059804 122 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059805 122 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059806 122 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059807 122 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059808 122 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059809 122 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059810 122 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059811 122 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059826 122 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059827 122 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059828 122 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059829 122 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059830 122 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059831 122 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059832 122 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059833 122 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059834 122 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059835 122 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059836 122 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059837 122 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059838 122 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059839 122 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059840 122 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059841 122 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059842 122 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059843 122 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1059844 122 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1059845 122 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061998 106 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061999 106 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061944 106 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061945 106 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061946 106 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061947 106 2020-01-04 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061948 106 2020-01-05 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061949 106 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061950 106 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061951 106 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061952 106 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061953 106 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061954 106 2020-01-11 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061955 106 2020-01-12 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061956 106 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061957 106 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061958 106 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061959 106 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061960 106 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061961 106 2020-01-18 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061962 106 2020-01-19 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061963 106 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061964 106 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061965 106 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061966 106 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061967 106 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1061968 106 2020-01-25 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061969 106 2020-01-26 \N \N \N \N \N 00:00:00 02:05:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1061970 106 2020-01-27 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 02:05:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064096 110 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064097 110 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064098 110 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064099 110 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064100 110 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064101 110 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064102 110 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064103 110 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064104 110 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064105 110 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064106 110 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064107 110 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064108 110 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064109 110 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064110 110 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064111 110 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064112 110 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064113 110 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064114 110 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064115 110 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064116 110 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064127 110 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064128 110 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064129 110 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064130 110 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064131 110 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064132 110 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064133 110 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064134 110 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064135 110 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064136 110 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064137 110 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064138 110 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064139 110 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064140 110 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064141 110 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064142 110 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064143 110 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064144 110 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064145 110 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064146 110 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064147 110 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1064148 110 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1064149 110 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066248 145 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066249 145 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066250 145 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066251 145 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066252 145 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066253 145 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066254 145 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066255 145 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066256 145 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066257 145 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066258 145 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066259 145 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1066260 145 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066261 145 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066262 145 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1066263 145 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068400 148 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068401 148 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068402 148 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068403 148 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068404 148 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068405 148 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068406 148 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068407 148 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068408 148 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068409 148 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068410 148 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068411 148 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068412 148 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068413 148 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068414 148 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068415 148 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068416 148 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068417 148 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068418 148 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068419 148 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068420 148 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068431 148 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068432 148 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068433 148 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068434 148 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068435 148 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068436 148 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068437 148 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068438 148 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068439 148 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068440 148 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068441 148 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068442 148 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068443 148 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068444 148 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068445 148 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068446 148 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068447 148 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068448 148 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068449 148 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068450 148 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068451 148 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1068452 148 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1068453 148 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070606 130 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070607 130 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070552 130 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070553 130 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070554 130 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070555 130 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070556 130 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070557 130 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070558 130 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070559 130 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070560 130 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070561 130 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1070562 130 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1070563 130 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914518 129 2019-12-30 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914519 129 2019-12-31 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914464 129 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914465 129 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914466 129 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914467 129 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914468 129 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914469 129 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914470 129 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914471 129 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914472 129 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914473 129 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914474 129 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914475 129 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914476 129 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914477 129 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914478 129 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914481 129 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914479 129 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914480 129 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914482 129 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914483 129 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914484 129 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914485 129 2020-01-22 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914486 129 2020-01-23 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914487 129 2020-01-24 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +914488 129 2020-01-25 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914489 129 2020-01-26 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +914517 129 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074856 143 2020-01-01 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074857 143 2020-01-02 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074858 143 2020-01-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074859 143 2020-01-04 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074860 143 2020-01-05 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074861 143 2020-01-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074862 143 2020-01-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074863 143 2020-01-08 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074864 143 2020-01-09 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074865 143 2020-01-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074866 143 2020-01-11 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074867 143 2020-01-12 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074868 143 2020-01-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074869 143 2020-01-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074870 143 2020-01-15 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074871 143 2020-01-16 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074872 143 2020-01-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074873 143 2020-01-18 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074874 143 2020-01-19 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074875 143 2020-01-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074876 143 2020-01-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074887 143 2020-02-01 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074888 143 2020-02-02 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074889 143 2020-02-03 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074890 143 2020-02-04 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074891 143 2020-02-05 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074892 143 2020-02-06 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074893 143 2020-02-07 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074894 143 2020-02-08 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074895 143 2020-02-09 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074896 143 2020-02-10 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074897 143 2020-02-11 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074898 143 2020-02-12 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074899 143 2020-02-13 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074900 143 2020-02-14 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074901 143 2020-02-15 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074902 143 2020-02-16 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074903 143 2020-02-17 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074904 143 2020-02-18 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074905 143 2020-02-19 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074906 143 2020-02-20 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074907 143 2020-02-21 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 00:00:00 06:40:00 \N \N \N 08:00:00 00:00:00 \N 27 08:00:00 \N 01:00:00 +1074908 143 2020-02-22 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +1074909 143 2020-02-23 \N \N \N \N \N 00:00:00 06:40:00 \N \N \N 00:00:00 00:00:00 \N 27 00:00:00 \N 00:00:00 +\. -COPY portanova.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, created, modified) FROM stdin; + +-- +-- Data for Name: staffreportperiodweeks; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.staffreportperiodweeks (id, id_staff, id_reportperiod, calyear, calweek, contracthours, workhours, trackedhours, vacancyhours, recuperationhours, diffhours, weekstart, hoursrestbefore, totalhours, caldays, contractdays, workdays) FROM stdin; +5512 146 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5513 146 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5514 146 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5515 146 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5516 146 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5517 146 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5518 146 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5519 146 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5520 132 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5521 132 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5522 132 27 2020 3 20:00:00 24:00:00 00:00:00 00:00:00 00:00:00 04:00:00 2020-01-13 \N 24:00:00 3 3 \N +6142 146 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6143 146 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6144 146 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6145 146 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6146 146 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6147 146 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6148 146 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6149 146 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5523 115 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5524 115 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5525 115 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5526 115 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5527 115 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5528 115 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5529 115 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5530 115 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6150 115 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6151 115 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5531 114 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5532 114 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5533 114 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5534 114 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +6152 115 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6153 115 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6154 115 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6155 115 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6156 115 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6157 115 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5535 114 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5536 114 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5537 114 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5538 114 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5539 112 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5540 112 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5541 112 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5542 112 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5543 112 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5544 112 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5545 112 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5546 112 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6158 114 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6159 114 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6160 114 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6161 114 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6162 114 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6163 114 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6164 114 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6165 114 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5547 108 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5548 108 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5549 108 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5550 108 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5551 108 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5552 108 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5553 108 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6166 112 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6167 112 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6168 112 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6169 112 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6170 112 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6171 112 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6172 112 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6173 112 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5554 135 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5555 135 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5556 135 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5557 135 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5558 135 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5559 135 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5560 135 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5561 135 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6174 108 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6175 108 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5562 127 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5563 127 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5564 127 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5565 127 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5566 127 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5567 127 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +6176 108 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6177 108 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6178 108 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6179 108 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6180 108 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6181 108 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5568 127 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5569 127 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5570 149 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5571 149 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5572 149 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5573 149 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5574 149 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5575 149 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5576 149 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5577 149 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6182 135 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6183 135 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6184 135 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6185 135 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6186 135 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6187 135 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +5578 103 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5579 103 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5580 103 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +6188 135 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +5581 103 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5582 103 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5583 103 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5584 103 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5585 103 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6189 135 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5586 121 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5587 121 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +6190 127 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6191 127 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6192 127 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6193 127 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6194 127 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6195 127 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6196 127 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6197 127 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5588 121 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5589 121 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5590 121 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5591 121 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5592 121 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5593 121 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5594 125 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N +5595 125 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N +5596 125 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N +5597 125 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N +5598 125 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N +5599 125 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N +6198 149 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6199 149 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6200 149 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6201 149 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6202 149 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +5600 125 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N +6203 149 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6204 149 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6205 149 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5601 125 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N +5602 119 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5603 119 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5604 119 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5605 119 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5606 119 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5607 119 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5608 119 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5609 119 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6206 103 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6207 103 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6208 103 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6209 103 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6210 103 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6211 103 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6212 103 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6213 103 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5610 113 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5611 113 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5612 113 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5613 113 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5614 113 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5615 113 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5616 113 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5617 113 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5618 147 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5619 147 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +6214 121 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6215 121 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6216 121 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6217 121 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6218 121 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6219 121 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6220 121 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6221 121 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5620 147 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5621 147 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5622 147 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5623 147 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5624 147 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5625 147 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5626 131 27 2020 1 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2019-12-30 \N 40:00:00 7 6 \N +5627 131 27 2020 2 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-06 \N 40:00:00 7 6 \N +5628 131 27 2020 3 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-13 \N 40:00:00 7 6 \N +5629 131 27 2020 4 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-20 \N 40:00:00 7 6 \N +5630 131 27 2020 5 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-01-27 \N 40:00:00 7 6 \N +5631 131 27 2020 6 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-03 \N 40:00:00 7 6 \N +5632 131 27 2020 7 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-10 \N 40:00:00 7 6 \N +6222 125 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N +6223 125 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N +6224 125 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N +6225 125 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N +6226 125 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N +6227 125 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N +6228 125 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N +6229 125 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N +5633 131 27 2020 8 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-17 \N 40:00:00 7 6 \N +5634 104 27 2020 1 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2019-12-30 \N 40:00:00 7 6 \N +5635 104 27 2020 2 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-06 \N 40:00:00 7 6 \N +5636 104 27 2020 3 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-13 \N 40:00:00 7 6 \N +5637 104 27 2020 4 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-20 \N 40:00:00 7 6 \N +5638 104 27 2020 5 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-01-27 \N 40:00:00 7 6 \N +5639 104 27 2020 6 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-03 \N 40:00:00 7 6 \N +5640 104 27 2020 7 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-10 \N 40:00:00 7 6 \N +5641 104 27 2020 8 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-17 \N 40:00:00 7 6 \N +5642 151 27 2020 5 13:20:00 00:00:00 00:00:00 00:00:00 00:00:00 -13:20:00 2020-01-27 \N 00:00:00 2 2 \N +6230 119 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6231 119 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6232 119 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6233 119 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6234 119 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6235 119 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6236 119 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6237 119 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6238 113 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6239 113 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +5643 151 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5644 151 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5645 151 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5646 138 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5647 138 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5648 138 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5649 138 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5650 138 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5651 138 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5652 138 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5653 138 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6240 113 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6241 113 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6242 113 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6243 113 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6244 113 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6245 113 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5654 105 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5655 105 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5656 105 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5657 105 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5658 105 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5659 105 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5660 105 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5661 105 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6246 147 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6247 147 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6248 147 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6249 147 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6250 147 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6251 147 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6252 147 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6253 147 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6254 131 29 2020 9 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-02-24 \N 40:00:00 7 6 \N +6255 131 29 2020 10 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-02 \N 40:00:00 7 6 \N +5662 134 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5663 134 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5664 134 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5665 134 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5666 134 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5667 134 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5668 134 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5669 134 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6256 131 29 2020 11 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-09 \N 40:00:00 7 6 \N +5670 144 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5671 144 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5672 144 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5673 144 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5674 144 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5675 144 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5676 144 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5677 144 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5678 102 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5679 102 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5680 102 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5681 102 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5682 102 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5683 102 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5684 102 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5685 102 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5686 109 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5687 109 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5688 109 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5689 109 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5690 109 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5691 109 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5692 109 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5693 109 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5694 118 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +6257 131 29 2020 12 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-16 \N 40:00:00 7 6 \N +6258 131 29 2020 13 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-23 \N 40:00:00 7 6 \N +6259 131 29 2020 14 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-03-30 \N 40:00:00 7 6 \N +6260 131 29 2020 15 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-06 \N 40:00:00 7 6 \N +6261 131 29 2020 16 20:00:00 40:00:00 00:00:00 00:00:00 00:00:00 20:00:00 2020-04-13 \N 40:00:00 7 6 \N +5695 118 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5696 118 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5697 118 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5698 118 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5699 118 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5700 118 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5701 118 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5702 133 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5703 133 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5704 133 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5705 133 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5706 133 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5707 133 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5708 133 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5709 133 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5710 111 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5711 111 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5712 111 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5713 111 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5714 111 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5715 111 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5716 111 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5717 111 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6262 104 29 2020 9 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-02-24 \N 40:00:00 7 6 \N +6263 104 29 2020 10 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-02 \N 40:00:00 7 6 \N +6264 104 29 2020 11 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-09 \N 40:00:00 7 6 \N +6265 104 29 2020 12 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-16 \N 40:00:00 7 6 \N +6266 104 29 2020 13 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-23 \N 40:00:00 7 6 \N +5718 128 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5719 128 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5720 128 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5721 128 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5722 128 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5723 128 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5724 128 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5725 128 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5726 142 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5727 142 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5728 142 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5729 142 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5730 142 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5731 142 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5732 142 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5733 142 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5734 136 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5735 136 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5736 136 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5737 136 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5738 136 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5739 136 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5740 136 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +6267 104 29 2020 14 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-03-30 \N 40:00:00 7 6 \N +6268 104 29 2020 15 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-06 \N 40:00:00 7 6 \N +6269 104 29 2020 16 30:00:00 40:00:00 00:00:00 00:00:00 00:00:00 10:00:00 2020-04-13 \N 40:00:00 7 6 \N +5741 136 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5742 140 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5743 140 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5744 140 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5745 140 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5746 140 27 2020 5 33:20:00 40:00:00 00:00:00 00:00:00 00:00:00 06:40:00 2020-01-27 \N 40:00:00 5 5 \N +5747 139 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5748 139 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5749 139 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5750 139 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5751 139 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5752 139 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5753 139 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5754 139 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5755 141 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5756 141 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5757 141 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5758 141 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5759 141 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5760 141 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5761 141 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5762 141 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6270 151 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6271 151 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6272 151 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6273 151 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6274 151 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6275 151 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6276 151 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6277 151 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5763 122 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5764 122 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5765 122 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5766 122 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5767 122 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5768 122 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5769 122 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5770 122 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5771 106 27 2020 1 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2019-12-30 \N 40:00:00 7 6 \N +5772 106 27 2020 2 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-06 \N 40:00:00 7 6 \N +5773 106 27 2020 3 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-13 \N 40:00:00 7 6 \N +5774 106 27 2020 4 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-20 \N 40:00:00 7 6 \N +5775 106 27 2020 5 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-01-27 \N 40:00:00 7 6 \N +5776 106 27 2020 6 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-03 \N 40:00:00 7 6 \N +5777 106 27 2020 7 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-10 \N 40:00:00 7 6 \N +5778 106 27 2020 8 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-17 \N 40:00:00 7 6 \N +5779 110 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5780 110 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5781 110 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +6278 138 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6279 138 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6280 138 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +5782 110 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5783 110 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5784 110 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5785 110 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5786 110 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5787 145 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5788 145 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5789 145 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5790 145 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5791 145 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5792 145 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5793 145 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5794 145 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5795 148 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5796 148 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5797 148 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5798 148 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5799 148 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5800 148 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5801 148 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5802 148 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6281 138 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6282 138 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6283 138 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6284 138 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6285 138 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +5803 130 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5804 130 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5805 130 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5806 130 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5807 130 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5808 130 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5809 130 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5810 130 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5256 129 27 2020 1 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2019-12-30 \N 40:00:00 7 6 \N +5257 129 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5258 129 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5259 129 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5260 129 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5261 129 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5262 129 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5263 129 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +5819 143 27 2020 1 33:20:00 24:00:00 00:00:00 00:00:00 00:00:00 -09:20:00 2019-12-30 \N 24:00:00 5 5 \N +5820 143 27 2020 2 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-06 \N 40:00:00 7 6 \N +5821 143 27 2020 3 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-13 \N 40:00:00 7 6 \N +5822 143 27 2020 4 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-20 \N 40:00:00 7 6 \N +5823 143 27 2020 5 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-01-27 \N 40:00:00 7 6 \N +5824 143 27 2020 6 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-03 \N 40:00:00 7 6 \N +5825 143 27 2020 7 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-10 \N 40:00:00 7 6 \N +5826 143 27 2020 8 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-17 \N 40:00:00 7 6 \N +6286 105 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6287 105 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6288 105 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6289 105 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6290 105 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6291 105 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6292 105 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6293 105 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6294 134 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6295 134 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6296 134 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6297 134 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6298 134 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6299 134 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6300 134 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6301 134 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6302 144 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6303 144 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6304 144 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6305 144 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6306 144 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6307 144 29 2020 14 13:20:00 16:00:00 00:00:00 00:00:00 00:00:00 02:40:00 2020-03-30 \N 16:00:00 2 2 \N +6308 102 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6309 102 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6310 102 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6311 102 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6312 102 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6313 102 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6314 102 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6315 102 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6316 109 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6317 109 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6318 109 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6319 109 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6320 109 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6321 109 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6322 109 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6323 109 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6324 118 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6325 118 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6326 118 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6327 118 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6328 118 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6329 118 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6330 118 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6331 118 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6332 133 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6333 133 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6334 133 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6335 133 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6336 133 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6337 133 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6338 133 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6339 133 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6340 111 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6341 111 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6342 111 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6343 111 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6344 111 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6345 111 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6346 111 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6347 111 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6348 128 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6349 128 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6350 128 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6351 128 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6352 128 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6353 128 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6354 128 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6355 128 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6356 142 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6357 142 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6358 142 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6359 142 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6360 142 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6361 142 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6362 142 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6363 142 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6364 136 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6365 136 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6366 136 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6367 136 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6368 136 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6369 136 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6370 136 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6371 136 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6372 139 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6373 139 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6374 139 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6375 139 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6376 139 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6377 139 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6378 139 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6379 139 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6380 141 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6381 141 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6382 141 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6383 141 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6384 141 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6385 141 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6386 141 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6387 141 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6388 122 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6389 122 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6390 122 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6391 122 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6392 122 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6393 122 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6394 122 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6395 122 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6396 106 29 2020 9 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-02-24 \N 40:00:00 7 6 \N +6397 106 29 2020 10 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-02 \N 40:00:00 7 6 \N +6398 106 29 2020 11 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-09 \N 40:00:00 7 6 \N +6399 106 29 2020 12 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-16 \N 40:00:00 7 6 \N +6400 106 29 2020 13 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-23 \N 40:00:00 7 6 \N +6401 106 29 2020 14 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-03-30 \N 40:00:00 7 6 \N +6402 106 29 2020 15 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-06 \N 40:00:00 7 6 \N +6403 106 29 2020 16 12:30:00 40:00:00 00:00:00 00:00:00 00:00:00 27:30:00 2020-04-13 \N 40:00:00 7 6 \N +6404 110 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6405 110 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6406 110 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6407 110 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6408 110 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6409 110 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6410 110 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6411 110 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6412 145 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6413 145 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6414 145 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6415 145 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6416 145 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6417 145 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6418 145 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6419 145 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6420 148 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6421 148 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6422 148 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6423 148 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6424 148 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6425 148 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6426 148 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6427 148 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6428 130 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6429 130 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6430 130 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6431 130 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6432 130 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6433 130 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6434 130 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6435 130 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6436 129 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6437 129 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6438 129 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6439 129 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6440 129 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6441 129 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6442 129 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6443 129 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N +6444 143 29 2020 9 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-02-24 \N 40:00:00 7 6 \N +6445 143 29 2020 10 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-02 \N 40:00:00 7 6 \N +6446 143 29 2020 11 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-09 \N 40:00:00 7 6 \N +6447 143 29 2020 12 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-16 \N 40:00:00 7 6 \N +6448 143 29 2020 13 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-23 \N 40:00:00 7 6 \N +6449 143 29 2020 14 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-03-30 \N 40:00:00 7 6 \N +6450 143 29 2020 15 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-06 \N 40:00:00 7 6 \N +6451 143 29 2020 16 40:00:00 40:00:00 00:00:00 00:00:00 00:00:00 00:00:00 2020-04-13 \N 40:00:00 7 6 \N \. @@ -1699,1457 +7736,30 @@ COPY portanova.stafftimetracks (id, id_staff, stamp_in, stamp_out, tracktype, cr -- Data for Name: staffvacancy; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffvacancy (id, id_staff, startdate, enddate, vacancytype, dayhours, note, validated) FROM stdin; +COPY portanova.staffvacancy (id, id_staff, daydate, id_vacancytype, vacancyhours) FROM stdin; \. -- --- Data for Name: staffvacancyyear; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- Data for Name: vacancydays; Type: TABLE DATA; Schema: portanova; Owner: potlu_user -- -COPY portanova.staffvacancyyear (id, id_staff, vyear, hours, days) FROM stdin; +COPY portanova.vacancydays (id, daydate, vacancyname) FROM stdin; \. -- --- Data for Name: staffworkplan; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, timestart2, timeend2, timepause, vacancyhours, vacancytype) FROM stdin; -3118 3 2019-12-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3133 5 2020-01-06 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3148 5 2020-01-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3163 6 2020-01-16 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3178 44 2020-01-02 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3193 44 2020-01-22 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -1817 34 2017-07-07 \N \N \N \N \N \N \N -1847 37 2017-07-15 \N \N \N \N \N \N \N -3119 3 2019-12-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3134 5 2020-01-10 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3149 6 \N \N \N \N \N \N \N \N -3164 6 2020-01-17 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3179 44 2020-01-01 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3194 44 2020-01-23 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3120 3 2020-01-01 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3135 5 2020-01-16 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3150 6 2019-12-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3165 6 2020-01-20 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3180 44 2020-01-06 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3195 44 2020-01-24 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3121 3 2020-01-02 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3136 5 2020-01-17 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3151 6 2019-12-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3166 6 2020-01-21 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3181 44 2020-01-03 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3196 44 2020-01-28 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3122 3 2020-01-03 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3137 5 2020-01-14 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3152 6 2020-01-01 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3167 6 2020-01-22 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3182 44 2020-01-07 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3197 44 2020-01-27 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3123 5 2019-12-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3138 5 2020-01-15 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3153 6 2020-01-02 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3168 6 2020-01-23 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3183 44 2020-01-08 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3198 44 2020-01-29 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3124 5 2020-01-03 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3139 5 2020-01-21 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3154 6 2020-01-03 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3169 6 2020-01-24 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3184 44 2020-01-10 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3199 44 2020-01-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -2405 20 2017-06-17 \N \N \N \N \N \N \N -3125 5 2020-01-02 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3140 5 2020-01-20 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3155 6 2020-01-06 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3170 6 2020-01-27 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3185 44 2020-01-09 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3200 44 2020-01-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3126 5 \N \N \N \N \N \N \N \N -3141 5 2020-01-22 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3156 6 2020-01-07 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3171 6 2020-01-28 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3186 44 2020-01-13 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3127 5 2020-01-01 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3142 5 2020-01-23 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3157 6 2020-01-08 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3172 6 2020-01-29 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3187 44 2020-01-14 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3128 5 2019-12-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3143 5 2020-01-24 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3158 6 2020-01-09 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3173 6 2020-01-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3188 44 2020-01-15 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3129 5 2020-01-13 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3144 5 2020-01-27 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3159 6 2020-01-10 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3174 6 2020-01-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3189 44 2020-01-16 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3130 5 2020-01-08 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3145 5 2020-01-28 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3160 6 2020-01-13 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3175 44 \N \N \N \N \N \N \N \N -3190 44 2020-01-17 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3131 5 2020-01-07 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3146 5 2020-01-29 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3161 6 2020-01-14 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3176 44 2019-12-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3191 44 2020-01-20 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -1767 8 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1768 8 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1769 8 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1770 8 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1771 8 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1772 8 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1773 8 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1774 8 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1775 8 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1776 8 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1777 8 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1778 8 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1779 8 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1780 8 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1781 8 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1782 8 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1783 8 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1784 8 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1785 8 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1786 8 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1787 8 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1788 8 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1789 8 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1790 8 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1791 8 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1792 8 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1793 8 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1794 8 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1795 8 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1796 8 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1797 8 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1798 8 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1799 8 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1800 8 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1801 8 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1802 8 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1803 8 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1804 8 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1805 8 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1806 8 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1807 8 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1808 8 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1809 8 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1810 8 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1811 8 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -1812 34 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1813 34 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1814 34 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1815 34 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1816 34 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1818 34 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1819 34 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1820 34 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1821 34 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1822 34 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1823 34 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1824 34 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1825 34 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1826 34 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1827 34 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1828 34 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1829 34 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1830 34 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1831 34 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1832 34 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1833 34 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1834 34 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1835 34 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1836 34 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1837 34 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1838 34 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1839 34 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1840 34 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1841 34 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1842 34 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1843 34 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1844 34 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1845 34 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1846 34 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1848 37 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -1849 37 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1850 37 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1851 37 2017-06-10 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -1852 37 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -1853 36 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1854 36 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1855 36 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1856 36 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1857 36 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1858 36 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1859 36 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1860 36 2017-06-05 11:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1861 36 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1862 36 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1863 36 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1864 36 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1865 36 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1866 36 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1867 36 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1868 36 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1869 36 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1870 36 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1871 36 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1872 36 2017-06-08 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -1873 36 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1874 36 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1875 36 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1876 36 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1877 36 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1878 36 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1879 36 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1880 36 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1881 36 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1882 36 2017-07-26 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1883 36 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1884 36 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1885 36 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1886 36 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1887 25 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1888 25 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1889 25 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1890 25 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1891 25 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1892 25 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1893 25 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1894 25 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1895 25 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1896 25 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1897 25 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1898 25 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1899 25 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1900 25 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1901 25 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1902 25 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1903 25 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1904 25 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1905 25 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1906 25 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1907 25 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1908 25 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1909 25 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1910 25 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1911 25 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1912 25 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1913 25 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1914 25 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1915 25 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1916 25 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1917 25 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1918 25 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1919 25 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1920 33 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1921 33 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1922 33 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1923 33 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1924 33 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1925 33 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1926 33 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1927 33 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1928 33 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1929 33 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1930 33 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1931 33 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1932 33 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1933 33 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1934 33 2017-07-27 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1935 33 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1936 33 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1937 33 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1938 33 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1939 33 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1940 33 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1941 33 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1942 33 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1943 33 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1944 33 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1945 33 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1946 33 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1947 33 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1948 33 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1949 33 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1950 33 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1951 33 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1952 33 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1953 33 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1954 33 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1955 33 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1956 33 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1957 33 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1958 33 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1959 33 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1960 33 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1961 33 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1962 33 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -1963 11 2017-06-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1964 11 2017-06-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1965 11 2017-07-12 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1966 11 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1967 11 2017-07-20 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1968 11 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1969 11 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1970 11 2017-07-27 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1971 11 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1972 11 2017-06-08 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1973 11 2017-06-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1974 11 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1975 11 2017-06-22 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1976 11 2017-08-04 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1977 11 2017-07-26 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1978 11 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1979 11 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1980 11 2017-07-13 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1981 11 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1982 11 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1983 11 2017-06-14 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1984 11 2017-07-07 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1985 11 2017-06-29 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1986 11 2017-06-28 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1987 11 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1988 11 2017-06-15 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1989 11 2017-07-21 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1990 11 2017-07-14 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1991 11 2017-06-07 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1992 11 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1993 11 2017-07-28 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1994 11 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -1995 11 2017-08-03 10:30:00 14:30:00 17:30:00 23:35:00 01:00:00 \N \N -1996 11 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -1997 11 2017-06-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -1998 11 2017-06-21 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -1999 11 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2000 11 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2001 11 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2002 11 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2003 11 2017-08-02 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -2004 11 2017-07-19 10:30:00 14:30:00 17:30:00 22:40:00 01:00:00 \N \N -2005 11 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2006 29 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2007 29 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2008 29 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2009 29 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2010 29 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2011 29 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2012 29 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2013 29 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2014 29 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2015 29 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2016 29 2017-07-06 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2017 29 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2018 29 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2019 29 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2020 29 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2021 29 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2022 29 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2023 29 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2024 29 2017-07-07 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2025 29 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2026 29 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2027 29 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2028 29 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2029 29 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2030 29 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2031 29 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2032 29 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2033 29 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2034 29 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2035 29 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2036 29 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2037 29 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2038 29 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2039 29 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2040 29 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2041 29 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2042 29 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2043 29 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2044 29 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2045 32 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2046 32 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2047 32 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2048 32 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2049 32 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2050 32 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2051 32 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2052 32 2017-07-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2053 32 2017-07-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2054 32 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2055 32 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2056 32 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2057 32 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2058 32 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2059 32 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2060 32 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2061 32 2017-06-05 10:30:00 14:30:00 17:30:00 21:30:00 01:00:00 \N \N -2062 32 2017-06-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2063 32 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2064 32 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2065 32 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2066 32 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2067 32 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2068 32 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2069 32 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2070 32 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2071 32 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2072 32 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2073 15 2017-08-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2074 15 2017-06-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2075 15 2017-06-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2076 15 2017-07-29 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2077 15 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2078 15 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2079 15 2017-07-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2080 15 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2081 15 2017-06-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2082 15 2017-06-15 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2083 15 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2084 15 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2085 15 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2086 15 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2087 15 2017-06-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2088 15 2017-07-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2089 15 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2090 15 2017-08-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2091 15 2017-08-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2092 15 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2093 15 2017-07-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2094 15 2017-07-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2095 15 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2096 15 2017-06-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2097 15 2017-06-22 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2098 15 2017-06-08 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2099 15 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2100 15 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2101 15 2017-06-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2102 15 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2103 15 2017-07-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2104 24 2017-07-12 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2105 24 2017-06-07 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -2106 24 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2107 24 2017-07-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2108 24 2017-07-16 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2109 24 2017-07-31 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2110 24 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2111 24 2017-07-04 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2112 24 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2113 24 2017-08-03 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2114 24 2017-07-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2115 24 2017-06-21 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2116 24 2017-06-17 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2117 24 2017-06-14 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2118 24 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2119 24 2017-08-01 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2120 24 2017-06-29 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2121 24 2017-06-28 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2122 24 2017-06-16 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2123 24 2017-07-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2124 24 2017-06-15 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2125 24 2017-06-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2126 24 2017-07-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2127 24 2017-07-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2128 24 2017-08-04 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2129 24 2017-08-02 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2130 24 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2131 24 2017-07-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2132 24 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2133 24 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2134 24 2017-07-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2135 24 2017-07-11 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2136 24 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2137 24 2017-06-18 11:00:00 15:00:00 17:30:00 23:30:00 01:00:00 \N \N -2138 24 2017-06-10 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2139 24 2017-06-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2140 24 2017-06-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2141 24 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2142 24 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2143 24 2017-06-22 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2144 1 2017-07-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2145 1 2017-06-18 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2146 1 2017-06-10 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2147 1 2017-06-13 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2148 1 2017-07-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2149 1 2017-06-11 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2150 1 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2151 1 2017-08-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2152 1 2017-07-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2153 1 2017-07-26 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2154 1 2017-07-19 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2155 1 2017-08-05 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2156 1 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2157 1 2017-08-06 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2158 1 2017-07-22 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2159 1 2017-06-14 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2160 1 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2161 1 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2162 1 2017-08-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2163 1 2017-06-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2164 1 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2165 1 2017-07-30 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2166 1 2017-07-12 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2167 1 2017-06-07 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2168 1 2017-07-23 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2169 1 2017-07-29 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2170 1 2017-07-16 10:30:00 15:00:00 18:00:00 21:30:00 01:00:00 \N \N -2171 1 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2172 1 2017-07-15 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2173 1 2017-06-17 10:30:00 15:00:00 18:00:00 21:00:00 01:00:00 \N \N -2174 26 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2175 26 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2176 26 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2177 26 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2178 26 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2179 26 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2180 26 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2181 26 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2182 26 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2183 26 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2184 26 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2185 26 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2186 26 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2187 26 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2188 26 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2189 26 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2190 26 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2191 26 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2192 26 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2193 26 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2194 26 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2195 26 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2196 26 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2197 26 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2198 26 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2199 26 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2200 26 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2201 26 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2202 26 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2203 26 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2204 26 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2205 26 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2206 26 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2207 26 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2208 26 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2209 26 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2210 26 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2211 26 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2212 30 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2213 30 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2214 30 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2215 30 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2216 30 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2217 30 2017-06-25 10:30:00 14:30:00 \N \N 01:00:00 \N \N -2218 30 2017-07-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2219 30 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2220 30 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2221 30 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2222 30 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2223 30 2017-07-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2224 30 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2225 30 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2226 30 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2227 30 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2228 30 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2229 30 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2230 30 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2231 30 2017-07-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2232 28 2017-07-01 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2233 28 2017-06-24 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2234 28 2017-06-13 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2235 28 2017-06-18 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2236 28 2017-06-26 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2237 28 2017-06-19 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2238 28 2017-07-27 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2239 28 2017-06-25 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2240 28 2017-07-24 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2241 28 2017-07-22 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2242 28 2017-07-08 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2243 28 2017-07-13 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2244 28 2017-07-09 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2245 28 2017-07-26 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2246 28 2017-07-19 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2247 28 2017-07-03 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2248 28 2017-07-25 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2249 28 2017-06-27 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2250 28 2017-07-30 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2251 28 2017-07-21 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2252 28 2017-06-20 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2253 28 2017-06-23 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2254 28 2017-06-14 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2255 28 2017-07-02 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2256 28 2017-07-04 11:00:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2257 28 2017-06-17 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2258 28 2017-07-15 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2259 28 2017-06-30 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2260 28 2017-07-29 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2261 28 2017-07-20 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2262 28 2017-07-28 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2263 28 2017-07-16 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2264 28 2017-07-23 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2265 28 2017-07-12 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2266 28 2017-07-14 11:30:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2267 28 2017-07-05 11:00:00 15:00:00 18:00:00 23:30:00 01:00:00 \N \N -2268 19 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2269 19 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2270 19 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2271 19 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2272 19 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2273 19 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2274 19 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2275 19 2017-06-25 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2276 19 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2277 19 2017-06-24 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2278 19 2017-07-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2279 19 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2280 19 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2281 19 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2282 19 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2283 19 2017-06-21 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2284 19 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2285 19 2017-06-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2286 19 2017-07-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2287 19 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2288 19 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2289 19 2017-06-23 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2290 19 2017-06-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2291 19 2017-06-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2292 19 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2293 35 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2294 35 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2295 35 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2296 35 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2297 35 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2298 35 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2299 35 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2300 35 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2301 35 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2302 35 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2303 35 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2304 35 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2305 35 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2306 35 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2307 35 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2308 35 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2309 35 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2310 35 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2311 35 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2312 35 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2313 35 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2314 35 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2315 35 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2316 35 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2317 35 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2318 35 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2319 35 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2320 35 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2321 35 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2322 35 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2323 35 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2324 35 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2325 35 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2326 4 2017-08-06 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2327 4 2017-06-11 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2328 4 2017-07-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2329 4 2017-08-02 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2330 4 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2331 4 2017-06-25 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2332 4 2017-06-18 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2333 4 2017-07-28 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2334 4 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2335 4 2017-06-30 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2336 4 2017-08-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2337 4 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2338 4 2017-06-21 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2339 4 2017-07-02 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2340 4 2017-06-07 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2341 4 2017-07-14 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2342 4 2017-07-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2343 4 2017-06-28 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2344 4 2017-06-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2345 4 2017-07-21 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2346 4 2017-07-30 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2347 4 2017-06-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2348 4 2017-07-07 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2349 4 2017-06-14 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2350 4 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2351 4 2017-07-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2352 4 2017-07-09 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2353 4 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2354 4 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2355 4 2017-08-04 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2356 4 2017-07-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2357 4 2017-06-09 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2358 4 2017-06-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2359 4 2017-06-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2360 4 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2361 4 2017-07-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2362 4 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2363 4 2017-07-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2364 4 2017-07-16 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2365 4 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2366 4 2017-07-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2367 4 2017-07-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -2368 4 2017-07-23 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2369 4 2017-06-16 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2370 4 2017-06-23 10:30:00 15:00:00 18:00:00 22:45:00 01:00:00 \N \N -2371 20 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2372 20 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2373 20 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2374 20 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2375 20 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2376 20 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2377 20 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2378 20 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2379 20 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2380 20 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2381 20 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2382 20 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2383 20 2017-06-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2384 20 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2385 20 2017-06-14 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2386 20 2017-06-15 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2387 20 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2388 20 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2389 20 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2390 20 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2391 20 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2392 20 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2393 20 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2394 20 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2395 20 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2396 20 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2397 20 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2398 20 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2399 20 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2400 20 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2401 20 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2402 20 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2403 20 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2404 20 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2406 20 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2407 20 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2408 20 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2409 20 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2410 20 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2411 20 2017-06-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2412 20 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2413 20 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2414 20 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2415 20 2017-06-16 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2416 16 2017-06-26 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2417 16 2017-06-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2418 16 2017-07-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2419 16 2017-06-13 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2420 16 2017-06-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2421 16 2017-07-10 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2422 16 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2423 16 2017-06-27 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2424 16 2017-07-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2425 16 2017-07-09 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2426 16 2017-08-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2427 16 2017-07-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2428 16 2017-08-01 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2429 16 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2430 16 2017-06-05 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2431 16 2017-06-12 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2432 16 2017-07-17 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2433 16 2017-06-20 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2434 16 2017-06-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2435 16 2017-07-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2436 16 2017-06-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2437 16 2017-07-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2438 16 2017-07-16 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2439 16 2017-07-31 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2440 16 2017-06-19 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2441 16 2017-06-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2442 16 2017-06-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2443 16 2017-07-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2444 16 2017-06-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2445 16 2017-07-03 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2446 16 2017-07-18 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2447 16 2017-06-11 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2448 16 2017-07-25 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2449 16 2017-07-24 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2450 16 2017-08-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2451 16 2017-06-06 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2452 16 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2453 16 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2454 16 2017-07-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2455 16 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2456 16 2017-07-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2457 16 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2458 16 2017-07-02 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2459 16 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2460 16 2017-07-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2461 43 2017-07-11 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2462 43 2017-07-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2463 43 2017-06-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2464 43 2017-06-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2465 43 2017-06-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2466 43 2017-06-22 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2467 43 2017-06-27 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2468 43 2017-07-25 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2469 43 2017-07-10 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2470 43 2017-08-02 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2471 43 2017-08-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2472 43 2017-07-18 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2473 43 2017-07-26 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2474 43 2017-07-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2475 43 2017-07-19 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2476 43 2017-07-13 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2477 43 2017-07-24 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2478 43 2017-06-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2479 43 2017-06-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2480 43 2017-07-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2481 43 2017-08-01 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2482 43 2017-06-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2483 43 2017-06-29 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2484 43 2017-06-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2485 43 2017-06-16 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2486 43 2017-06-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2487 43 2017-07-17 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2488 43 2017-06-15 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2489 43 2017-07-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2490 43 2017-07-14 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2491 43 2017-07-12 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2492 43 2017-06-07 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2493 43 2017-07-05 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2494 43 2017-07-06 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2495 43 2017-07-28 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2496 43 2017-07-31 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2497 43 2017-07-20 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2498 43 2017-07-04 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2499 43 2017-06-30 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2500 43 2017-08-03 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2501 43 2017-06-21 09:30:00 15:30:00 \N \N 01:00:00 \N \N -2502 17 2017-06-22 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2503 17 2017-06-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2504 17 2017-06-09 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2505 17 2017-06-08 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2506 17 2017-06-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2507 17 2017-07-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2508 17 2017-07-13 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2509 17 2017-07-10 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2510 17 2017-07-26 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2511 17 2017-08-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2512 17 2017-06-27 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2513 17 2017-07-17 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2514 17 2017-06-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2515 17 2017-06-16 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2516 17 2017-08-01 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2517 17 2017-06-23 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2518 17 2017-06-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2519 17 2017-06-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2520 17 2017-07-04 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2521 17 2017-07-20 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2522 17 2017-07-31 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2523 17 2017-07-05 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2524 17 2017-07-12 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2525 17 2017-06-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2526 17 2017-07-11 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2527 17 2017-07-24 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2528 17 2017-07-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2529 17 2017-07-19 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2530 17 2017-07-18 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2531 17 2017-08-02 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2532 17 2017-07-25 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2533 17 2017-06-15 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2534 17 2017-07-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2535 17 2017-06-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2536 17 2017-06-29 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2537 17 2017-06-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2538 17 2017-07-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2539 17 2017-06-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2540 17 2017-08-03 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2541 17 2017-06-30 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2542 17 2017-06-21 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2543 17 2017-07-28 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2544 17 2017-07-06 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2545 17 2017-06-07 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2546 17 2017-07-14 08:00:00 13:00:00 13:00:00 17:00:00 01:00:00 \N \N -2547 2 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2548 2 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2549 2 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2550 2 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2551 2 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2552 2 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2553 2 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2554 2 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2555 2 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2556 2 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2557 2 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2558 2 2017-07-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2559 2 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2560 2 2017-07-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2561 2 2017-06-22 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2562 2 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2563 2 2017-06-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2564 2 2017-06-08 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2565 2 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2566 2 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2567 2 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2568 2 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2569 2 2017-07-13 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2570 2 2017-06-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2571 2 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2572 2 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2573 2 2017-06-15 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2574 2 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2575 2 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2576 2 2017-06-29 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2577 2 2017-07-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2578 2 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2579 2 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2580 2 2017-08-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2581 2 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2582 2 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2583 2 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2584 2 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2585 2 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2586 2 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2587 2 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2588 2 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2589 2 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2590 2 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2591 2 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2592 7 2017-07-09 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2593 7 2017-07-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2594 7 2017-06-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2595 7 2017-07-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2596 7 2017-07-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2597 7 2017-06-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2598 7 2017-06-13 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2599 7 2017-06-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2600 7 2017-07-27 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2601 7 2017-06-26 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2602 7 2017-07-16 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2603 7 2017-07-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2604 7 2017-07-31 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2605 7 2017-07-04 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2606 7 2017-07-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2607 7 2017-07-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2608 7 2017-07-23 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2609 7 2017-06-20 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2610 7 2017-07-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2611 7 2017-06-12 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2612 7 2017-06-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2613 7 2017-08-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2614 7 2017-08-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2615 7 2017-07-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2616 7 2017-06-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2617 7 2017-07-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2618 7 2017-08-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2619 7 2017-07-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2620 7 2017-07-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2621 7 2017-07-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2622 7 2017-07-11 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2623 7 2017-06-25 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2624 7 2017-06-18 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2625 7 2017-06-19 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2626 7 2017-07-02 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2627 7 2017-08-03 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2628 7 2017-06-21 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2629 7 2017-06-07 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2630 7 2017-07-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2631 7 2017-06-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2632 7 2017-06-28 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2633 7 2017-06-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2634 7 2017-07-30 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2635 7 2017-06-14 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2636 7 2017-06-06 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2637 9 2017-06-24 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2638 9 2017-06-25 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2639 9 2017-07-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2640 9 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2641 9 2017-06-18 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2642 9 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2643 9 2017-08-06 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2644 9 2017-06-11 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2645 9 2017-07-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2646 9 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2647 9 2017-07-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2648 9 2017-07-30 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2649 9 2017-07-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2650 9 2017-07-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2651 9 2017-06-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2652 9 2017-07-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2653 9 2017-07-29 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2654 9 2017-06-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2655 9 2017-07-15 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2656 9 2017-07-02 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2657 9 2017-07-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2658 9 2017-06-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2659 9 2017-06-13 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2660 9 2017-07-01 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2661 9 2017-06-10 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2662 9 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2663 9 2017-08-05 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2664 9 2017-07-09 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2665 9 2017-07-08 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2666 9 2017-07-22 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2667 9 2017-06-27 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2668 9 2017-08-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2669 9 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2670 9 2017-06-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2671 9 2017-06-20 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2672 9 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2673 9 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2674 9 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2675 9 2017-08-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2676 9 2017-06-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2677 9 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2678 9 2017-07-16 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2679 9 2017-06-17 10:30:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N -2680 9 2017-07-04 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2681 9 2017-07-23 10:30:00 15:00:00 18:00:00 00:15:00 01:00:00 \N \N -2682 \N 2017-06-23 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2683 \N 2017-06-16 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2684 \N 2017-07-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2685 \N 2017-07-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2686 \N 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2687 \N 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2688 \N 2017-07-20 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2689 \N 2017-06-17 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2690 \N 2017-07-27 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2691 \N 2017-06-10 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2692 \N 2017-06-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2693 \N 2017-06-09 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2694 \N 2017-07-01 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2695 \N 2017-06-22 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2696 \N 2017-07-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2697 \N 2017-08-04 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2698 \N 2017-07-08 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2699 \N 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2700 \N 2017-07-13 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2701 \N 2017-08-05 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2702 \N 2017-07-22 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2703 \N 2017-06-14 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2704 \N 2017-07-07 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2705 \N 2017-06-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2706 \N 2017-06-28 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2707 \N 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2708 \N 2017-06-15 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2709 \N 2017-07-21 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2710 \N 2017-07-14 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2711 \N 2017-06-07 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2712 \N 2017-07-06 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2713 \N 2017-07-29 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2714 \N 2017-07-28 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2715 \N 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2716 \N 2017-06-30 10:30:00 14:30:00 18:00:00 23:15:00 01:00:00 \N \N -2717 \N 2017-08-03 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -2718 \N 2017-07-15 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2719 \N 2017-06-21 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2720 \N 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2721 \N 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2722 \N 2017-06-24 10:30:00 15:00:00 18:00:00 23:45:00 01:00:00 \N \N -2723 \N 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2724 \N 2017-08-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2725 \N 2017-07-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2726 \N 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2727 13 2017-07-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2728 13 2017-06-11 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2729 13 2017-06-27 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2730 13 2017-07-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2731 13 2017-08-04 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2732 13 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2733 13 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2734 13 2017-07-09 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2735 13 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2736 13 2017-08-06 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2737 13 2017-07-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2738 13 2017-06-25 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2739 13 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2740 13 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2741 13 2017-07-14 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2742 13 2017-07-23 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2743 13 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2744 13 2017-07-16 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2745 13 2017-07-28 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2746 13 2017-07-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2747 13 2017-07-02 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2748 13 2017-06-30 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2749 13 2017-07-07 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2750 13 2017-06-23 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2751 13 2017-08-01 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2752 13 2017-06-20 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2753 13 2017-07-30 10:30:00 14:30:00 17:30:00 00:15:00 01:00:00 \N \N -2754 13 2017-07-21 10:30:00 14:30:00 17:30:00 00:00:00 01:00:00 \N \N -2755 13 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2756 31 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2757 31 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2758 31 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2759 31 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2760 31 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2761 31 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2762 31 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2763 31 2017-06-09 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2764 31 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2765 31 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2766 31 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2767 31 2017-07-29 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2768 31 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2769 31 2017-07-28 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2770 31 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2771 31 2017-06-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2772 31 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2773 31 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2774 31 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2775 31 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2776 31 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2777 31 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2778 31 2017-07-30 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2779 31 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2780 31 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2781 12 2017-07-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2782 12 2017-07-14 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2783 12 2017-07-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2784 12 2017-06-30 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2785 12 2017-08-03 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2786 12 2017-07-15 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2787 12 2017-07-29 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2788 12 2017-07-28 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2789 12 2017-06-06 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2790 12 2017-07-07 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2791 12 2017-07-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2792 12 2017-07-21 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2793 12 2017-06-15 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2794 12 2017-06-29 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2795 12 2017-07-18 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2796 12 2017-07-03 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2797 12 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2798 12 2017-07-25 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2799 12 2017-08-06 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2800 12 2017-07-24 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2801 12 2017-06-18 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2802 12 2017-06-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2803 12 2017-06-25 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2804 12 2017-07-11 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2805 12 2017-06-24 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2806 12 2017-07-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2807 12 2017-07-04 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2808 12 2017-06-17 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2809 12 2017-07-31 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2810 12 2017-07-20 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2811 12 2017-07-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2812 12 2017-06-23 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2813 12 2017-08-01 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2814 12 2017-06-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2815 12 2017-06-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2816 12 2017-07-17 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2817 12 2017-06-16 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2818 12 2017-06-20 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2819 12 2017-08-04 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2820 12 2017-07-10 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2821 12 2017-06-27 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2822 12 2017-07-22 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2823 12 2017-07-08 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2824 12 2017-08-05 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2825 12 2017-07-13 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2826 12 2017-07-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2827 12 2017-06-10 10:30:00 15:30:00 17:30:00 21:45:00 01:00:00 \N \N -2828 12 2017-06-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2829 12 2017-07-27 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2830 12 2017-07-01 10:30:00 14:30:00 17:30:00 21:45:00 01:00:00 \N \N -2831 12 2017-06-22 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2832 12 2017-06-08 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2833 12 2017-06-09 10:30:00 14:30:00 17:30:00 22:15:00 01:00:00 \N \N -2834 12 2017-06-13 10:30:00 14:30:00 17:30:00 23:15:00 01:00:00 \N \N -2835 23 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2836 23 2017-08-03 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2837 23 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2838 23 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2839 23 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2840 23 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2841 23 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2842 23 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2843 23 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2844 23 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2845 23 2017-06-07 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2846 23 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2847 23 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2848 23 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2849 23 2017-06-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2850 23 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2851 23 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2852 23 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2853 23 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2854 23 2017-06-06 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2855 23 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2856 23 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2857 23 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2858 23 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2859 23 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2860 23 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2861 23 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2862 23 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2863 23 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2864 23 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2865 23 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2866 23 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2867 23 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2868 23 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2869 23 2017-06-08 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2870 23 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2871 23 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2872 23 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2873 23 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2874 21 2017-06-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2875 21 2017-08-02 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2876 21 2017-07-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2877 21 2017-07-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2878 21 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2879 21 2017-07-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2880 21 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2881 21 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2882 21 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2883 21 2017-07-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2884 21 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2885 21 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2886 21 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2887 21 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2888 21 2017-06-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2889 21 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2890 21 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2891 21 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2892 21 2017-06-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2893 21 2017-07-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2894 21 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2895 21 2017-07-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2896 21 2017-06-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2897 21 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2898 21 2017-07-06 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2899 21 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2900 21 2017-07-31 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2901 21 2017-07-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2902 21 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2903 21 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2904 21 2017-07-02 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2905 21 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2906 21 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2907 21 2017-08-01 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2908 21 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2909 21 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2910 21 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2911 21 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2912 10 2017-07-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2913 10 2017-06-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2914 10 2017-07-06 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2915 10 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2916 10 2017-07-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2917 10 2017-07-02 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2918 10 2017-08-03 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2919 10 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2920 10 2017-06-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2921 10 2017-06-30 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2922 10 2017-06-14 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2923 10 2017-07-07 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2924 10 2017-06-29 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2925 10 2017-06-28 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2926 10 2017-07-21 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2927 10 2017-07-30 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2928 10 2017-06-15 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2929 10 2017-06-11 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2930 10 2017-08-02 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2931 10 2017-07-19 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2932 10 2017-08-06 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2933 10 2017-06-25 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2934 10 2017-06-18 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2935 10 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2936 10 2017-07-12 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2937 10 2017-07-05 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2938 10 2017-07-23 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2939 10 2017-07-16 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2940 10 2017-07-20 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2941 10 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2942 10 2017-06-23 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2943 10 2017-06-16 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2944 10 2017-08-04 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2945 10 2017-07-26 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2946 10 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2947 10 2017-07-09 10:30:00 14:30:00 17:30:00 23:45:00 01:00:00 \N \N -2948 10 2017-08-05 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2949 10 2017-07-13 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2950 10 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2951 10 2017-07-27 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2952 10 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2953 10 2017-06-08 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2954 10 2017-06-09 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -2955 10 2017-07-01 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -2956 10 2017-06-22 10:30:00 14:30:00 17:30:00 00:25:00 01:00:00 \N \N -2957 5 2017-06-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2958 5 2017-07-16 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2959 5 2017-07-31 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2960 5 2017-07-20 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2961 5 2017-07-23 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2962 5 2017-07-17 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2963 5 2017-06-16 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2964 5 2017-06-23 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2965 5 2017-06-12 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2966 5 2017-06-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2967 5 2017-07-22 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2968 5 2017-07-08 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2969 5 2017-07-09 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2970 5 2017-07-13 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2971 5 2017-08-05 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2972 5 2017-07-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2973 5 2017-08-04 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2974 5 2017-07-01 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2975 5 2017-06-22 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2976 5 2017-06-08 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2977 5 2017-06-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2978 5 2017-06-26 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2979 5 2017-06-10 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2980 5 2017-07-27 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2981 5 2017-07-02 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2982 5 2017-07-15 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2983 5 2017-08-03 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2984 5 2017-06-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2985 5 2017-07-29 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2986 5 2017-07-28 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2987 5 2017-07-06 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2988 5 2017-07-14 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2989 5 2017-07-30 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2990 5 2017-06-15 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2991 5 2017-07-21 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2992 5 2017-06-29 10:30:00 15:00:00 18:00:00 21:15:00 01:00:00 \N \N -2993 5 2017-07-07 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -2994 5 2017-08-06 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2995 5 2017-07-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2996 5 2017-07-03 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2997 5 2017-06-11 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2998 5 2017-06-24 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -2999 5 2017-06-18 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3000 5 2017-06-19 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3001 5 2017-06-25 10:30:00 15:00:00 18:00:00 23:15:00 01:00:00 \N \N -3002 44 2017-07-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3003 44 2017-07-20 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3004 44 2017-07-31 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3005 44 2017-07-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3006 44 2017-08-03 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3007 44 2017-06-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3008 44 2017-06-30 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3009 44 2017-07-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3010 44 2017-07-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3011 44 2017-07-05 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3012 44 2017-07-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3013 44 2017-06-29 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3014 44 2017-06-28 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3015 44 2017-06-16 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3016 44 2017-07-17 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3017 44 2017-07-21 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3018 44 2017-06-15 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3019 44 2017-06-14 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3020 44 2017-06-12 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3021 44 2017-07-07 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3022 44 2017-08-01 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3023 44 2017-06-06 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3024 44 2017-07-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3025 44 2017-07-24 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3026 44 2017-06-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3027 44 2017-07-25 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3028 44 2017-07-10 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3029 44 2017-08-02 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3030 44 2017-08-04 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3031 44 2017-07-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3032 44 2017-07-18 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3033 44 2017-07-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3034 44 2017-06-08 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3035 44 2017-06-13 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3036 44 2017-06-09 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3037 44 2017-06-22 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3038 44 2017-07-11 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3039 44 2017-07-27 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3040 44 2017-06-26 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3041 44 2017-06-19 08:00:00 12:00:00 13:00:00 17:00:00 01:00:00 \N \N -3042 22 2017-07-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3043 22 2017-07-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3044 22 2017-07-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3045 22 2017-07-04 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3046 22 2017-06-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3047 22 2017-07-15 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3048 22 2017-06-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3049 22 2017-07-14 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3050 22 2017-07-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3051 22 2017-06-29 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3052 22 2017-06-28 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3053 22 2017-06-16 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3054 22 2017-06-20 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3055 22 2017-07-21 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3056 22 2017-07-30 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3057 22 2017-07-17 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3058 22 2017-06-12 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3059 22 2017-07-07 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3060 22 2017-06-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3061 22 2017-06-23 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3062 22 2017-06-06 10:30:00 14:30:00 17:30:00 23:30:00 01:00:00 \N \N -3063 22 2017-07-08 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3064 22 2017-08-05 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3065 22 2017-07-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3066 22 2017-07-22 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3067 22 2017-07-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3068 22 2017-06-11 10:30:00 14:30:00 17:30:00 22:00:00 01:00:00 \N \N -3069 22 2017-07-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3070 22 2017-06-27 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3071 22 2017-07-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3072 22 2017-08-04 11:00:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3073 22 2017-07-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3074 22 2017-07-03 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3075 22 2017-06-09 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3076 22 2017-06-13 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3077 22 2017-06-24 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3078 22 2017-07-11 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3079 22 2017-06-25 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3080 22 2017-06-10 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3081 22 2017-06-18 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3082 22 2017-06-26 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3083 22 2017-06-19 10:30:00 14:30:00 17:30:00 23:00:00 01:00:00 \N \N -3084 3 2017-07-07 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3085 3 2017-06-05 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3086 3 2017-06-12 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3087 3 2017-06-23 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3088 3 2017-06-16 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3089 3 2017-06-29 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3090 3 2017-07-30 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3091 3 2017-06-15 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3092 3 2017-07-06 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3093 3 2017-07-31 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3094 3 2017-07-28 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3095 3 2017-07-29 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3096 3 2017-06-17 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3097 3 2017-06-30 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3098 3 2017-08-03 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3099 3 2017-07-02 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3100 3 2017-06-25 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3101 3 2017-06-19 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3102 3 2017-06-10 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3103 3 2017-06-18 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3104 3 2017-06-26 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3105 3 2017-06-09 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3106 3 2017-06-08 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3107 3 2017-06-24 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3108 3 2017-06-22 10:30:00 15:00:00 18:00:00 22:35:00 01:00:00 \N \N -3109 3 2017-07-01 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3110 3 2017-06-11 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3111 3 2017-07-03 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3112 3 2017-08-04 10:30:00 15:00:00 18:00:00 22:15:00 01:00:00 \N \N -3113 3 2017-07-10 10:30:00 15:00:00 18:00:00 00:00:00 01:00:00 \N \N -3114 3 2017-08-05 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3115 3 2017-07-09 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3116 3 2017-07-08 10:30:00 15:00:00 18:00:00 22:00:00 01:00:00 \N \N -3117 3 2017-08-06 10:30:00 15:00:00 18:00:00 21:45:00 01:00:00 \N \N -3132 5 2020-01-09 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3147 5 2020-01-30 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3162 6 2020-01-15 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3177 44 2019-12-31 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N -3192 44 2020-01-21 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N +-- Data for Name: vacancytypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.vacancytypes (id, vacancyname, isworktime, isfreetime, color) FROM stdin; +5 extraordinaire t t #e26b0a +7 training t \N #b7dee8 +4 jour de repos f t #0070c0 +3 comp. 44h f \N #86a0af +6 comp. dim. trav. f \N #aeb2b5 +2 maladie t t #e3000f +1 normal t t #1b92bb \. @@ -3158,65 +7768,137 @@ COPY portanova.staffworkplan (id, id_staff, daydate, timestart1, timeend1, times -- COPY portanova.workplans (id, workplan, mon_timestart1, mon_timeend1, mon_timestart2, mon_timeend2, mon_timepause, tue_timestart1, tue_timeend1, tue_timestart2, tue_timeend2, tue_timepause, wed_timestart1, wed_timeend1, wed_timestart2, wed_timeend2, wed_timepause, thu_timestart1, thu_timeend1, thu_timestart2, thu_timeend2, thu_timepause, fri_timestart1, fri_timeend1, fri_timestart2, fri_timeend2, fri_timepause, sat_timestart1, sat_timeend1, sat_timestart2, sat_timeend2, sat_timepause, sun_timestart1, sun_timeend1, sun_timestart2, sun_timeend2, sun_timepause) FROM stdin; -1 Standard 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 08:00:00 12:00:00 14:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +6 Cuisine 1 (40h) 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 11:00:00 15:00:00 18:00:00 23:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N +1 Standard 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 08:00:00 12:00:00 13:00:00 18:00:00 01:00:00 \N \N \N \N \N \N \N \N \N \N \. -- --- Data for Name: worktypes; Type: TABLE DATA; Schema: portanova; Owner: potlu_user --- - -COPY portanova.worktypes (id, worktype, isworktime, isfreetime, typecolor) FROM stdin; -1 normal t \N \N -5 congé extra t t #e26b0a -2 congé t t #fcd5b4 -4 congé maladie t t #f2dcdb -3 training t \N #b7dee8 -6 jour ferié t \N #92d050 -7 libre jours \N \N #0070c0 +-- Data for Name: zzold_staffreportperiodsums; Type: TABLE DATA; Schema: portanova; Owner: potlu_user +-- + +COPY portanova.zzold_staffreportperiodsums (id, id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff, hoursrestbefore) FROM stdin; +18 135 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +56 141 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +57 142 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +58 138 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +2 141 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +3 142 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +19 133 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +20 141 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +21 142 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +22 127 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +23 136 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +24 138 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +25 139 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +26 134 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +27 131 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +28 129 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +29 128 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +30 130 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +31 143 18 328:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +33 103 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +35 125 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +32 102 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +34 104 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +36 122 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +38 117 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +37 121 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +39 115 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +40 114 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +41 119 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +42 113 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +43 146 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +44 112 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +45 108 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +46 109 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +47 147 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +48 105 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +49 118 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +59 131 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +60 135 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +61 132 9 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +62 133 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +63 127 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +64 136 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +65 140 9 184:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +66 139 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +67 134 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +68 129 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +69 144 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +70 128 9 24:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +71 130 9 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +72 143 9 304:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +4 138 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +5 131 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +6 135 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +7 133 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +8 127 10 320:00:00 00:00:00 00:00:00 08:00:00 00:00:00 00:00:00 \N +9 136 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +10 139 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +11 134 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +12 129 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +13 144 10 218:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +14 128 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +15 130 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +16 143 10 320:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +102 151 19 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +50 106 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +51 111 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +52 110 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +53 145 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +54 148 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N +55 149 20 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 \N \. -- --- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: editlog_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 7, true); +SELECT pg_catalog.setval('portanova.editlog_id_seq', 1, false); -- --- Name: sites_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: reportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.sites_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.reportperiod_id_seq', 29, true); -- -- Name: staff_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staff_id_seq', 45, true); +SELECT pg_catalog.setval('portanova.staff_id_seq', 151, true); -- -- Name: staffgroups_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 3, true); +SELECT pg_catalog.setval('portanova.staffgroups_id_seq', 8, true); -- -- Name: staffperiodbase_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 49, true); +SELECT pg_catalog.setval('portanova.staffperiodbase_id_seq', 172, true); + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.staffreportperiod_id_seq', 1151, true); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.stafftimetracks_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffreportperiodsums_id_seq', 126, true); -- @@ -3227,24 +7909,31 @@ SELECT pg_catalog.setval('portanova.staffvacancy_id_seq', 1, false); -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- Name: staffweeksums_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffvacancyyear_id_seq', 1, false); +SELECT pg_catalog.setval('portanova.staffweeksums_id_seq', 6761, true); -- -- Name: staffworkplan_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 3200, true); +SELECT pg_catalog.setval('portanova.staffworkplan_id_seq', 1083489, true); + + +-- +-- Name: vacancydays_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user +-- + +SELECT pg_catalog.setval('portanova.vacancydays_id_seq', 1, false); -- -- Name: workplans_id_seq; Type: SEQUENCE SET; Schema: portanova; Owner: potlu_user -- -SELECT pg_catalog.setval('portanova.workplans_id_seq', 5, true); +SELECT pg_catalog.setval('portanova.workplans_id_seq', 6, true); -- @@ -3255,19 +7944,19 @@ SELECT pg_catalog.setval('portanova.worktypes_id_seq', 7, true); -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.reportperiod - ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); -- --- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.sites - ADD CONSTRAINT sites_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- @@ -3295,11 +7984,19 @@ ALTER TABLE ONLY portanova.staffcontract -- --- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.stafftimetracks - ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); -- @@ -3311,21 +8008,61 @@ ALTER TABLE ONLY portanova.staffvacancy -- --- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffreportperiodweeks staffweeksums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffvacancyyear - ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -- --- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: staffreportperioddays staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.staffworkplan +ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); +-- +-- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); + + +-- +-- Name: staffreportperiod uniq_staffreportperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +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: potlu_user +-- + +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: potlu_user +-- + +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT uniq_staffworplan_staffday UNIQUE (id_staff, daydate); + + +-- +-- Name: vacancydays vacancydays_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.vacancydays + ADD CONSTRAINT vacancydays_pkey PRIMARY KEY (id); + + -- -- Name: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- @@ -3335,18 +8072,192 @@ ALTER TABLE ONLY portanova.workplans -- --- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user +-- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: potlu_user -- -ALTER TABLE ONLY portanova.worktypes +ALTER TABLE ONLY portanova.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: staffcontract trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: potlu_user +-- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: potlu_user +-- + +CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; + + +-- +-- Name: staffcontract staffcontract_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk FOREIGN KEY (id_staff) REFERENCES portanova.staff(id); + + +-- +-- Name: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); + + +-- +-- Name: staffreportperiod staffreportperiod_fk; Type: FK CONSTRAINT; Schema: portanova; Owner: potlu_user +-- + +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: potlu_user +-- + +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: potlu_user +-- + +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: potlu_user +-- + +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: potlu_user +-- + +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: potlu_user -- -CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); -- diff --git a/dev/db/potlu_db.portanova.pg.schema.sql b/dev/db/potlu_db.portanova.pg.schema.sql index 36f488cd..28da8220 100644 --- a/dev/db/potlu_db.portanova.pg.schema.sql +++ b/dev/db/potlu_db.portanova.pg.schema.sql @@ -23,28 +23,583 @@ SET row_security = off; CREATE SCHEMA portanova; +-- +-- Name: add_reportperiod(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.add_reportperiod() RETURNS integer + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + rplength int4; + rpparentid int4; + rpunit text; + r_stgrps record; + rpsql text; + newperiodid int4; +begin + select reportperiodunit,reportperiodlength,reportperiodstart into rpunit,rplength,rpstart from public.companies where schemata='portanova'; + select case when max(enddate) is null then rpstart else date(max(enddate) + interval '1 day') end into rpstart from portanova.reportperiod; + execute 'select date(date(''' || rpstart || ''') + interval ''' || rplength || ' ' || rpunit || 's'' - interval ''1 day'' );' into rpend; + select max(id) into rpparentid from portanova.reportperiod; + --raise notice 'ADD NEW PERIOD: %->%',rpstart,rpend; + INSERT INTO portanova.reportperiod (startdate, enddate, id_parentreportperiod) VALUES(rpstart,rpend,rpparentid) returning id into newperiodid; + perform portanova.update_all_staff_in_period(newperiodid); + return newperiodid; +end; +$$; + + +-- +-- Name: getperiod_staffcontract(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pid integer) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + 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 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.weekhours,sc.weekdays,sc.id_workplan +from portanova.staffcontract sc where sc.startdate<= pend and (sc.enddate is null or sc.enddate >= pstart) +order by sc.id_staff,sc.startdate,sc.enddate; +END; +$$; + + +-- +-- Name: getperiod_staffcontract(date, date); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.getperiod_staffcontract(pstart date, pend date) RETURNS TABLE(id integer, id_staff integer, startdate date, enddate date, weekhours interval, weekdays integer, id_workplan integer) + LANGUAGE plpgsql + AS $$ + BEGIN + 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 portanova.staffcontract where startdate<= pend and (enddate is null or enddate >= pstart) order by id_staff,startdate,enddate; +END; +$$; + + +-- +-- Name: onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.onchange_reportperiod(pid_period integer) 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: set_periodday_sums(bigint); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_periodday_sums(pid_periodday bigint) RETURNS bigint + 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_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_staffperiod_sums(pid_period integer, pid_staff integer) 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 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, + 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; +$$; + + +-- +-- Name: set_staffperiodweek_sums(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_staffperiodweek_sums(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + wkcon record; + tmpcontrhours interval; +begin + -- INSERT Contract data into Week +for wkcon in select srpw.id,psc.weekhours,psc.weekdays,srpw.contractdays,srpw.caldays,srpw.diffhours,srpw.contracthours,srpw.totalhours +from portanova.staffreportperiodweeks srpw +left join (select xa.id_staff,xa.startdate,xa.enddate,xa.weekhours,xa.weekdays 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) +where srpw.id_reportperiod=pid_reportperiod and srpw.id_staff=pid_staff +loop + --raise notice 'id=%',wkcon; + --raise notice 'id=%',wkcon.contractdays; + wkcon.contracthours=wkcon.weekhours; + wkcon.contractdays=wkcon.weekdays; + if wkcon.caldays < wkcon.contractdays then + wkcon.contractdays = wkcon.caldays; + wkcon.contracthours = (wkcon.weekhours/wkcon.weekdays) * wkcon.contractdays; + end if; + wkcon.diffhours = wkcon.totalhours-wkcon.contracthours; + --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_stafftoperioddays(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_stafftoperioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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 + 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.staffreportperioddays (id_staff,daydate,id_reportperiod,timestart1,timeend1,timestart2,timeend2,timepause,contracthours) + values (pid_staff,cdate,pid_period,wdayplan.ts1,wdayplan.te1,wdayplan.ts2,wdayplan.te2,wdayplan.tp,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + else + insert into portanova.staffreportperioddays (id_staff,daydate,id_reportperiod,contracthours,id_staffgrou) values ( pid_staff , cdate , pid_period,cont.weekhours/cont.weekdays) + on conflict on constraint uniq_staffworplan_staffday do update set contracthours=cont.weekhours/cont.weekdays + returning id into cid_staffworkplan; + end if; + end if; + perform portanova.set_periodday_sums(cid_staffworkplan); + cdate = cdate + interval '1 day'; + end loop; + + end loop; + perform portanova.verify_perioddays(pid_period,pid_staff); + return true; +end; +$$; + + +-- +-- Name: set_stafftoperiodweeks(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.set_stafftoperiodweeks(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +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 , +coalesce(sum(recuperationhours) ,'00:00:00' ) as recuperationhours , +coalesce(sum(dayhours),'00:00:00') as totalhours, +count(id) 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 +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 + --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) + VALUES(wkpd.id_staff, wkpd.id_reportperiod, wkpd.calyear, wkpd.calweek, wkpd.workhours, wkpd.vacancyhours, wkpd.recuperationhours, wkpd.weekstart,wkpd.totalhours,wkpd.caldays) + 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; + end loop; + perform portanova.set_staffperiodweek_sums(pid_reportperiod, pid_staff); + + return true; +end; +$$; + + +-- +-- Name: update_all_staff_in_period(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_all_staff_in_period(pid_period integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffrec record; + staffreportid int4; + BEGIN + for staffrec in select id_staff from portanova.getperiod_staffcontract(pid_period) group by id_staff + loop + perform portanova.update_staff_in_period(pid_period,staffrec.id_staff); + end loop; + return true; + END; +$$; + + +-- +-- Name: update_staff_in_period(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staff_in_period(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + staffreportid int4; + BEGIN + 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); + perform portanova.set_staffperiod_sums(pid_period,pid_staff); + return true; + END; +$$; + + +-- +-- Name: update_staffreportperiod(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffreportperiod(pid_reportperiod integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + stprd record; +begin + for stprd in SELECT id_staff, id_period, sum(plannedhours) as plannedhours,sum(contracthours) as contracthours, sum(trackedhours) as trackedhours, sum(vacancyhours) as vacancyhours, sum(recuperationhours) as recuperationhours, sum(hoursdiff) as hoursdiff + FROM portanova.staffweeksums where id_period=pid_reportperiod and id_staff=pid_staff group by id_staff,id_period + loop + INSERT INTO portanova.staffreportperiodsums (id_staff, id_reportperiod, plannedhours, contracthours, trackedhours, vacancyhours, recuperationhours, hoursdiff) + values (stprd.id_staff,stprd.id_period,stprd.plannedhours,stprd.contracthours,stprd.trackedhours,stprd.vacancyhours,stprd.recuperationhours,stprd.hoursdiff) + on conflict on constraint uniq_staffperiod_cal do update set plannedhours=stprd.plannedhours,contracthours=stprd.contracthours,trackedhours=stprd.trackedhours,vacancyhours=stprd.vacancyhours,recuperationhours=stprd.recuperationhours,hoursdiff=stprd.hoursdiff; + end loop; + return true; +end; +$$; + + +-- +-- Name: update_staffweeksums(bigint); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffweeksums(pid_staffworkplan bigint) 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; +$$; + + +-- +-- Name: update_staffworkplan(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.update_staffworkplan(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + cont record; + prd record; + cdl record; + cdate date; + edate date; + wday text; + wdayplan record; + cid_staffworkplan int8; +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(integer, integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.verify_perioddays(pid_period integer, pid_staff integer) RETURNS boolean + LANGUAGE plpgsql + AS $$ +declare + rpstart date; + rpend date; + wkpd record; + qlnotin text := ''; + sqlcheck text := ''; +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: zzold_onchange_reportperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_onchange_reportperiod(pid_period integer) 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: zzold_refreshperiods(); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_refreshperiods() RETURNS boolean + LANGUAGE plpgsql + AS $$ + declare + prds record; + begin + for prds in select id from portanova.reportperiod where isvalidated != true + loop + perform portanova.onchange_reportperiod(prds.id); + end loop; + RETURN false; + END; +$$; + + +-- +-- Name: zzold_set_staffperiod(integer); Type: FUNCTION; Schema: portanova; Owner: - +-- + +CREATE FUNCTION portanova.zzold_set_staffperiod(pid_period integer) 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; +$$; + + SET default_tablespace = ''; SET default_with_oids = false; -- --- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - +-- Name: editlog; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.reportperiod ( - id integer NOT NULL, - periodname text, - startdate date, - enddate date +CREATE TABLE portanova.editlog ( + id bigint NOT NULL, + id_user integer, + tblname text, + tblfields json, + modified timestamp without time zone DEFAULT CURRENT_TIMESTAMP, + created timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); -- --- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.reportperiod_id_seq - AS integer +CREATE SEQUENCE portanova.editlog_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -53,35 +608,30 @@ CREATE SEQUENCE portanova.reportperiod_id_seq -- --- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: editlog_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; +ALTER SEQUENCE portanova.editlog_id_seq OWNED BY portanova.editlog.id; -- --- Name: sites; Type: TABLE; Schema: portanova; Owner: - +-- Name: reportperiod; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.sites ( +CREATE TABLE portanova.reportperiod ( id integer NOT NULL, - sitename text, - address text, - zip text, - city text, - country text, - id_timetracker integer, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now(), - timeclockhost text + periodname text, + startdate date, + enddate date, + id_parentreportperiod integer ); -- --- Name: sites_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.sites_id_seq +CREATE SEQUENCE portanova.reportperiod_id_seq AS integer START WITH 1 INCREMENT BY 1 @@ -91,10 +641,10 @@ CREATE SEQUENCE portanova.sites_id_seq -- --- Name: sites_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: reportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.sites_id_seq OWNED BY portanova.sites.id; +ALTER SEQUENCE portanova.reportperiod_id_seq OWNED BY portanova.reportperiod.id; -- @@ -108,8 +658,14 @@ CREATE TABLE portanova.staff ( prename text, job text, birthdate date, - entrydate date, - leavedate date + matricule text, + email text, + phone text, + city text, + zip text, + country text, + address text, + id_staffgroup integer ); @@ -141,9 +697,11 @@ CREATE TABLE portanova.staffcontract ( id integer NOT NULL, id_staff integer, startdate date, - monthhours numeric, - weekhours numeric, - id_staffgroup integer + id_staffgroup integer, + weekdays integer, + enddate date, + id_workplan integer, + weekhours interval ); @@ -154,7 +712,9 @@ CREATE TABLE portanova.staffcontract ( CREATE TABLE portanova.staffgroups ( id integer NOT NULL, groupname text, - groupcolor text + groupcolor text, + editoruser_ids json, + isdefault boolean ); @@ -199,25 +759,95 @@ ALTER SEQUENCE portanova.staffperiodbase_id_seq OWNED BY portanova.staffcontract -- --- Name: stafftimetracks; Type: TABLE; Schema: portanova; Owner: - +-- Name: staffreportperiod; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffreportperiod ( + id integer NOT NULL, + id_reportperiod integer, + id_staff integer, + workhours interval, + contracthours interval, + totalhours interval, + vacancyhours interval, + recuperationhours interval, + hoursdiff interval, + hoursrestbefore interval +); + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffreportperiod_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- Name: staffreportperiod_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -CREATE TABLE portanova.stafftimetracks ( +ALTER SEQUENCE portanova.staffreportperiod_id_seq OWNED BY portanova.staffreportperiod.id; + + +-- +-- Name: staffreportperioddays; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.staffreportperioddays ( id bigint NOT NULL, + id_staff integer NOT NULL, + daydate date NOT NULL, + timestart1 time without time zone, + timeend1 time without time zone, + timestart2 time without time zone, + timeend2 time without time zone, + timepause time without time zone, + vacancyhours time without time zone, + contracthours time without time zone, + id_staffgroup integer, + id_vacancytype integer, + daytype integer, + workhours time without time zone, + recuperationhours time without time zone, + trackedhours time without time zone, + id_reportperiod integer, + dayhours time without time zone, + id_recuperationtype integer, + interruptionhours time without time zone +); + + +-- +-- Name: zzold_staffreportperiodsums; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.zzold_staffreportperiodsums ( + id integer NOT NULL, id_staff integer, - stamp_in timestamp without time zone, - stamp_out timestamp without time zone, - tracktype text, - created timestamp without time zone DEFAULT now(), - modified timestamp without time zone DEFAULT now() + id_reportperiod integer, + plannedhours interval DEFAULT '00:00:00'::interval, + contracthours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + hoursdiff interval DEFAULT '00:00:00'::interval, + hoursrestbefore interval ); -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.stafftimetracks_id_seq +CREATE SEQUENCE portanova.staffreportperiodsums_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -226,10 +856,35 @@ CREATE SEQUENCE portanova.stafftimetracks_id_seq -- --- Name: stafftimetracks_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: staffreportperiodsums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- + +ALTER SEQUENCE portanova.staffreportperiodsums_id_seq OWNED BY portanova.zzold_staffreportperiodsums.id; + + +-- +-- Name: staffreportperiodweeks; Type: TABLE; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetracks.id; +CREATE TABLE portanova.staffreportperiodweeks ( + id integer NOT NULL, + id_staff integer, + id_reportperiod integer, + calyear integer, + calweek double precision, + contracthours interval DEFAULT '00:00:00'::interval, + workhours interval DEFAULT '00:00:00'::interval, + trackedhours interval DEFAULT '00:00:00'::interval, + vacancyhours interval DEFAULT '00:00:00'::interval, + recuperationhours interval DEFAULT '00:00:00'::interval, + diffhours interval DEFAULT '00:00:00'::interval, + weekstart date, + hoursrestbefore interval, + totalhours interval, + caldays integer, + contractdays integer, + workdays integer +); -- @@ -239,12 +894,9 @@ ALTER SEQUENCE portanova.stafftimetracks_id_seq OWNED BY portanova.stafftimetrac CREATE TABLE portanova.staffvacancy ( id integer NOT NULL, id_staff integer, - startdate date, - enddate date, - vacancytype text, - dayhours time without time zone, - note text, - validated boolean + daydate date, + id_vacancytype integer, + vacancyhours time without time zone ); @@ -269,24 +921,30 @@ ALTER SEQUENCE portanova.staffvacancy_id_seq OWNED BY portanova.staffvacancy.id; -- --- Name: staffvacancyyear; Type: TABLE; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.staffvacancyyear ( - id integer NOT NULL, - id_staff integer, - vyear integer, - hours numeric, - days numeric -); +CREATE SEQUENCE portanova.staffweeksums_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: staffweeksums_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.staffvacancyyear_id_seq - AS integer +ALTER SEQUENCE portanova.staffweeksums_id_seq OWNED BY portanova.staffreportperiodweeks.id; + + +-- +-- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- + +CREATE SEQUENCE portanova.staffworkplan_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -295,35 +953,29 @@ CREATE SEQUENCE portanova.staffvacancyyear_id_seq -- --- Name: staffvacancyyear_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.staffvacancyyear_id_seq OWNED BY portanova.staffvacancyyear.id; +ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffreportperioddays.id; -- --- Name: staffworkplan; Type: TABLE; Schema: portanova; Owner: - +-- Name: vacancydays; Type: TABLE; Schema: portanova; Owner: - -- -CREATE TABLE portanova.staffworkplan ( - id bigint NOT NULL, - id_staff integer, +CREATE TABLE portanova.vacancydays ( + id integer NOT NULL, daydate date, - timestart1 time without time zone, - timeend1 time without time zone, - timestart2 time without time zone, - timeend2 time without time zone, - timepause time without time zone, - vacancyhours time without time zone, - vacancytype text + vacancyname text ); -- --- Name: staffworkplan_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - +-- Name: vacancydays_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- -CREATE SEQUENCE portanova.staffworkplan_id_seq +CREATE SEQUENCE portanova.vacancydays_id_seq + AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE @@ -332,10 +984,36 @@ CREATE SEQUENCE portanova.staffworkplan_id_seq -- --- Name: staffworkplan_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - +-- Name: vacancydays_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.id; +ALTER SEQUENCE portanova.vacancydays_id_seq OWNED BY portanova.vacancydays.id; + + +-- +-- Name: vacancytypes; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.vacancytypes ( + id integer NOT NULL, + vacancyname text, + isworktime boolean, + isfreetime boolean, + color text +); + + +-- +-- Name: vw_reportperioddata; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_reportperioddata AS + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; -- @@ -343,11 +1021,12 @@ ALTER SEQUENCE portanova.staffworkplan_id_seq OWNED BY portanova.staffworkplan.i -- CREATE VIEW portanova.vw_reportperiodlist AS - SELECT reportperiod.id, - reportperiod.periodname, - reportperiod.startdate, - reportperiod.enddate - FROM portanova.reportperiod; + SELECT rp.id, + rp.periodname, + rp.startdate, + rp.enddate, + rp.id_parentreportperiod + FROM portanova.reportperiod rp; -- @@ -358,12 +1037,60 @@ CREATE VIEW portanova.vw_staffcontractdata AS SELECT staffcontract.id, staffcontract.id_staff, staffcontract.startdate, - staffcontract.monthhours, - staffcontract.weekhours, - staffcontract.id_staffgroup + to_char(staffcontract.weekhours, 'HH24:MI'::text) AS weekhours, + staffcontract.weekdays, + staffcontract.id_staffgroup, + staffcontract.enddate, + staffcontract.id AS id_staffcontract, + staffcontract.id_workplan FROM portanova.staffcontract; +-- +-- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- + +CREATE TABLE portanova.workplans ( + id integer NOT NULL, + workplan text, + mon_timestart1 time without time zone, + mon_timeend1 time without time zone, + mon_timestart2 time without time zone, + mon_timeend2 time without time zone, + mon_timepause time without time zone, + tue_timestart1 time without time zone, + tue_timeend1 time without time zone, + tue_timestart2 time without time zone, + tue_timeend2 time without time zone, + tue_timepause time without time zone, + wed_timestart1 time without time zone, + wed_timeend1 time without time zone, + wed_timestart2 time without time zone, + wed_timeend2 time without time zone, + wed_timepause time without time zone, + thu_timestart1 time without time zone, + thu_timeend1 time without time zone, + thu_timestart2 time without time zone, + thu_timeend2 time without time zone, + thu_timepause time without time zone, + fri_timestart1 time without time zone, + fri_timeend1 time without time zone, + fri_timestart2 time without time zone, + fri_timeend2 time without time zone, + fri_timepause time without time zone, + sat_timestart1 time without time zone, + sat_timeend1 time without time zone, + sat_timestart2 time without time zone, + sat_timeend2 time without time zone, + sat_timepause time without time zone, + sun_timestart1 time without time zone, + sun_timeend1 time without time zone, + sun_timestart2 time without time zone, + sun_timeend2 time without time zone, + sun_timepause time without time zone +); + + -- -- Name: vw_staffcontractlist; Type: VIEW; Schema: portanova; Owner: - -- @@ -372,14 +1099,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS SELECT sc.id, sc.id_staff, sc.startdate, - sc.weekhours, - sc.monthhours, + to_char(sc.weekhours, 'HH24:MI'::text) AS weekhours, + sc.weekdays, sc.id_staffgroup, sg.groupname, - sg.groupcolor - FROM (portanova.staffcontract sc + sg.groupcolor, + sc.enddate, + sc.id_workplan, + wp.workplan + FROM ((portanova.staffcontract sc LEFT JOIN portanova.staffgroups sg ON ((sc.id_staffgroup = sg.id))) - ORDER BY sc.startdate DESC; + LEFT JOIN portanova.workplans wp ON ((sc.id_workplan = wp.id))) + ORDER BY sc.startdate DESC, sc.enddate DESC; -- @@ -389,12 +1120,18 @@ CREATE VIEW portanova.vw_staffcontractlist AS CREATE VIEW portanova.vw_staffdata AS SELECT staff.id, staff.staffnumber, + staff.matricule, staff.surname, staff.prename, + staff.email, + staff.phone, + staff.address, + staff.city, + staff.zip, + staff.country, staff.job, staff.birthdate, - staff.entrydate, - staff.leavedate + staff.id_staffgroup FROM portanova.staff; @@ -405,7 +1142,8 @@ CREATE VIEW portanova.vw_staffdata AS CREATE VIEW portanova.vw_staffgroupsdata AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -416,7 +1154,8 @@ CREATE VIEW portanova.vw_staffgroupsdata AS CREATE VIEW portanova.vw_staffgroupslist AS SELECT staffgroups.id, staffgroups.groupname, - staffgroups.groupcolor + staffgroups.groupcolor, + staffgroups.isdefault FROM portanova.staffgroups; @@ -425,16 +1164,17 @@ CREATE VIEW portanova.vw_staffgroupslist AS -- CREATE VIEW portanova.vw_stafflist AS - SELECT staff.id, - staff.staffnumber, - staff.surname, - staff.prename, - staff.job, - staff.birthdate, - staff.entrydate, - staff.leavedate, - ((staff.surname || ' '::text) || staff.prename) AS dspname - FROM portanova.staff; + SELECT st.id, + st.staffnumber, + st.surname, + st.prename, + st.job, + st.birthdate, + ((st.surname || ' '::text) || st.prename) AS dspname, + stg.groupname + FROM (portanova.staff st + LEFT JOIN portanova.staffgroups stg ON ((st.id_staffgroup = stg.id))) + ORDER BY st.surname, st.prename; -- @@ -691,29 +1431,146 @@ CREATE VIEW portanova.vw_staffplanned_dayweektotals AS ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, + FROM ( SELECT staffreportperioddays.daydate, + date_part('week'::text, staffreportperioddays.daydate) AS calweek, + (date_trunc('week'::text, (staffreportperioddays.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, staffreportperioddays.daydate) AS isodow, + staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (staffreportperioddays.timestart1 > staffreportperioddays.timeend1) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart1 - staffreportperioddays.timeend1))::time without time zone) + ELSE (staffreportperioddays.timeend1 - staffreportperioddays.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (staffreportperioddays.timestart2 > staffreportperioddays.timeend2) THEN ('24:00:00'::time without time zone - ((staffreportperioddays.timestart2 - staffreportperioddays.timeend2))::time without time zone) + ELSE (staffreportperioddays.timeend2 - staffreportperioddays.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 + staffreportperioddays.timepause + FROM portanova.staffreportperioddays) stw2 GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; +-- +-- Name: vw_staffreportperioddays; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffreportperioddays AS + SELECT pd.id, + pd.id_staff, + pd.id_reportperiod, + pd.daydate, + to_char((pd.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((pd.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((pd.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((pd.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((pd.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char(( + CASE + WHEN ((pd.vacancyhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.vacancyhours + END)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((pd.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char(( + CASE + WHEN ((pd.workhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.workhours + END)::interval, 'HH24:MI'::text) AS workhours, + to_char(( + CASE + WHEN ((pd.dayhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.dayhours + END)::interval, 'HH24:MI'::text) AS dayhours, + pd.id_vacancytype, + pd.daytype, + to_char(( + CASE + WHEN ((pd.recuperationhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.recuperationhours + END)::interval, 'HH24:MI'::text) AS recuperationhours, + pd.id_recuperationtype, + to_char(( + CASE + WHEN ((pd.interruptionhours)::interval = '00:00:00'::interval) THEN NULL::time without time zone + ELSE pd.interruptionhours + END)::interval, 'HH24:MI'::text) AS interruptionhours, + pw.id AS id_week, + (((((((pw.calyear || '-'::text) || lpad((pw.calweek)::text, 2, '0'::text)) || '('::text) || to_char((pw.weekstart)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((pw.weekstart + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspweek, + to_char(pw.contracthours, 'HH24:MI'::text) AS week_contracthours, + to_char(pw.workhours, 'HH24:MI'::text) AS week_workhours, + to_char(pw.vacancyhours, 'HH24:MI'::text) AS week_vacancyhours, + to_char(pw.recuperationhours, 'HH24:MI'::text) AS week_recuperationhours, + to_char(pw.totalhours, 'HH24:MI'::text) AS week_totalhours, + CASE + 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 + FROM (portanova.staffreportperiodweeks pw + LEFT JOIN portanova.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)))) + 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, + st.surname, + to_char(srp.contracthours, 'HH24:MI'::text) AS contracthours, + to_char(srp.workhours, 'HH24:MI'::text) AS workhours, + to_char(srp.vacancyhours, 'HH24:MI'::text) AS vacancyhours, + to_char(srp.recuperationhours, 'HH24:MI'::text) AS recuperationhours, + CASE + WHEN (srp.hoursdiff < '00:00:00'::interval) THEN ('-'::text || replace(to_char(srp.hoursdiff, 'HH24:MI'::text), '-'::text, ''::text)) + ELSE to_char(srp.hoursdiff, 'HH24:MI'::text) + END AS hoursdiff, + to_char(srp.totalhours, 'HH24:MI'::text) AS totalhours, + srp.id_reportperiod, + srp.id_staff, + srp.id, + rp.startdate, + rp.enddate, + ((st.surname || ' '::text) || st.prename) AS staffname, + st.id_staffgroup, + sgr.groupname + FROM (((portanova.staffreportperiod srp + LEFT JOIN portanova.staff st ON ((srp.id_staff = st.id))) + LEFT JOIN portanova.reportperiod rp ON ((srp.id_reportperiod = rp.id))) + LEFT JOIN portanova.staffgroups sgr ON ((st.id_staffgroup = sgr.id))) + ORDER BY sgr.groupname, st.surname, st.prename, srp.id_staff, rp.startdate, rp.enddate; + + +-- +-- Name: vw_staffworkplan_dailylist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplan_dailylist AS + SELECT staffreportperioddays.id, + staffreportperioddays.id_staff, + staffreportperioddays.daydate, + staffreportperioddays.timestart1, + staffreportperioddays.timeend1, + staffreportperioddays.timestart2, + staffreportperioddays.timeend2, + staffreportperioddays.timepause, + staffreportperioddays.interruptionhours, + staffreportperioddays.workhours, + staffreportperioddays.id_recuperationtype, + staffreportperioddays.recuperationhours, + staffreportperioddays.id_vacancytype, + staffreportperioddays.vacancyhours, + staffreportperioddays.trackedhours, + staffreportperioddays.daytype, + staffreportperioddays.contracthours, + staffreportperioddays.id_reportperiod + FROM portanova.staffreportperioddays + ORDER BY staffreportperioddays.id_staff, staffreportperioddays.daydate, staffreportperioddays.id_reportperiod; + + -- -- Name: vw_staffworkplan_weekly; Type: VIEW; Schema: portanova; Owner: - -- @@ -761,9 +1618,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS mon_vacancyhours, max( CASE - WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancytype + WHEN (stw2.isodow = (1)::double precision) THEN stw2.vacancyname ELSE NULL::text + END) AS mon_vacancyname, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.color + ELSE NULL::text + END) AS mon_color, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS mon_vacancytype, + max( + CASE + WHEN (stw2.isodow = (1)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS mon_daytype, to_char(max( CASE WHEN (stw2.isodow = (1)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -806,9 +1678,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS tue_vacancyhours, max( CASE - WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (2)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS tue_vacancytype, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS tue_vacancyname, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.color + ELSE NULL::text + END) AS tue_color, + max( + CASE + WHEN (stw2.isodow = (2)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS tue_daytype, to_char(max( CASE WHEN (stw2.isodow = (2)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -851,9 +1738,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS wed_vacancyhours, max( CASE - WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (3)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS wed_vacancytype, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS wed_vacancyname, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.color + ELSE NULL::text + END) AS wed_color, + max( + CASE + WHEN (stw2.isodow = (3)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS wed_daytype, to_char(max( CASE WHEN (stw2.isodow = (3)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -896,9 +1798,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS thu_vacancyhours, max( CASE - WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (4)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS thu_vacancytype, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS thu_vacancyname, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.color + ELSE NULL::text + END) AS thu_color, + max( + CASE + WHEN (stw2.isodow = (4)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS thu_daytype, to_char(max( CASE WHEN (stw2.isodow = (4)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -941,9 +1858,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS fri_vacancyhours, max( CASE - WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (5)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS fri_vacancytype, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS fri_vacancyname, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.color + ELSE NULL::text + END) AS fri_color, + max( + CASE + WHEN (stw2.isodow = (5)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS fri_daytype, to_char(max( CASE WHEN (stw2.isodow = (5)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -986,9 +1918,24 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sat_vacancyhours, max( CASE - WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (6)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sat_vacancytype, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sat_vacancyname, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sat_color, + max( + CASE + WHEN (stw2.isodow = (6)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sat_daytype, to_char(max( CASE WHEN (stw2.isodow = (6)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) @@ -1031,246 +1978,124 @@ CREATE VIEW portanova.vw_staffworkplan_weekly AS END) AS sun_vacancyhours, max( CASE - WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancytype - ELSE NULL::text + WHEN (stw2.isodow = (7)::double precision) THEN stw2.id_vacancytype + ELSE NULL::integer END) AS sun_vacancytype, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.vacancyname + ELSE NULL::text + END) AS sun_vacancyname, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.color + ELSE NULL::text + END) AS sun_color, + max( + CASE + WHEN (stw2.isodow = (7)::double precision) THEN stw2.daytype + ELSE NULL::integer + END) AS sun_daytype, to_char(max( CASE WHEN (stw2.isodow = (7)::double precision) THEN ((stw2.time1 + stw2.time2) - (stw2.timepause)::interval) ELSE NULL::interval END), 'HH24:MI'::text) AS sun_timetotal, - to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal - FROM ( SELECT staffworkplan.daydate, - date_part('week'::text, staffworkplan.daydate) AS calweek, - (date_trunc('week'::text, (staffworkplan.daydate)::timestamp with time zone))::date AS caldate, - date_part('isodow'::text, staffworkplan.daydate) AS isodow, - staffworkplan.id, - staffworkplan.id_staff, - staffworkplan.timestart1, - staffworkplan.timeend1, - staffworkplan.vacancyhours, - staffworkplan.vacancytype, + to_char(sum(((stw2.time1 + stw2.time2) - (stw2.timepause)::interval)), 'HH24:MI'::text) AS week_timetotal, + CASE + WHEN ((stw2.calweek IS NOT NULL) AND (stw2.id_staff IS NOT NULL)) THEN public.weekvacancy('portanova'::text, stw2.calweek, stw2.id_staff) + ELSE NULL::text + END AS week_vacancy, + stw2.staffname AS dspstaffname + FROM ( SELECT stw.daydate, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + date_part('isodow'::text, stw.daydate) AS isodow, + stw.id, + stw.id_staff, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.timestart1, + stw.timeend1, + stw.vacancyhours, + stw.id_vacancytype, + vt.color, + vt.vacancyname, + stw.daytype, CASE - WHEN (staffworkplan.timestart1 > staffworkplan.timeend1) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart1 - staffworkplan.timeend1))::time without time zone) - ELSE (staffworkplan.timeend1 - staffworkplan.timestart1) + WHEN (stw.timestart1 > stw.timeend1) THEN ('24:00:00'::time without time zone - ((stw.timestart1 - stw.timeend1))::time without time zone) + ELSE (stw.timeend1 - stw.timestart1) END AS time1, - staffworkplan.timestart2, - staffworkplan.timeend2, + stw.timestart2, + stw.timeend2, CASE - WHEN (staffworkplan.timestart2 > staffworkplan.timeend2) THEN ('24:00:00'::time without time zone - ((staffworkplan.timestart2 - staffworkplan.timeend2))::time without time zone) - ELSE (staffworkplan.timeend2 - staffworkplan.timestart2) + WHEN (stw.timestart2 > stw.timeend2) THEN ('24:00:00'::time without time zone - ((stw.timestart2 - stw.timeend2))::time without time zone) + ELSE (stw.timeend2 - stw.timestart2) END AS time2, - staffworkplan.timepause - FROM portanova.staffworkplan) stw2 - GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff; + stw.timepause + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + GROUP BY stw2.calweek, stw2.caldate, stw2.id_staff, stw2.staffname; -- --- Name: vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - +-- Name: vw_staffworkplandata; Type: VIEW; Schema: portanova; Owner: - -- -CREATE VIEW portanova.vw_staffworkplanlist AS - SELECT st.id AS id_staff, +CREATE VIEW portanova.vw_staffworkplandata AS + SELECT date_part('isoyear'::text, swp.daydate) AS calyear, + date_part('week'::text, swp.daydate) AS calweek, + to_char((swp.daydate)::timestamp with time zone, 'dy'::text) AS weekday, + swp.id, + swp.id_staff, + swp.daydate, + ((st.surname || ' '::text) || st.prename) AS staffname, + to_char((swp.timestart1)::interval, 'HH24:MI'::text) AS timestart1, + to_char((swp.timeend1)::interval, 'HH24:MI'::text) AS timeend1, + to_char((swp.timestart2)::interval, 'HH24:MI'::text) AS timestart2, + to_char((swp.timeend2)::interval, 'HH24:MI'::text) AS timeend2, + to_char((swp.timepause)::interval, 'HH24:MI'::text) AS timepause, + to_char((swp.vacancyhours)::interval, 'HH24:MI'::text) AS vacancyhours, + to_char((swp.contracthours)::interval, 'HH24:MI'::text) AS contracthours, + to_char((swp.interruptionhours)::interval, 'HH24:MI'::text) AS interruptionhours, + swp.id_staffgroup, + swp.id_vacancytype, + swp.id_recuperationtype, + swp.daytype, + to_char((swp.workhours)::interval, 'HH24:MI'::text) AS totalhours, + to_char((swp.recuperationhours)::interval, 'HH24:MI'::text) AS recuperationhours, + to_char((swp.trackedhours)::interval, 'HH24:MI'::text) AS trackedhours, + swp.id_reportperiod + FROM (portanova.staffreportperioddays swp + JOIN portanova.staff st ON ((swp.id_staff = st.id))); + + +-- +-- Name: vw_staffworkplanstafflist; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_staffworkplanstafflist AS + SELECT sc.id AS id_staffcontract, + st.id AS id_staff, ((st.surname || ' '::text) || st.prename) AS staffname, - (((((('Semaine '::text || sp_dwt.calweek) || '
('::text) || to_char((sp_dwt.weekbegin)::timestamp with time zone, 'DD.MM.YYYY'::text)) || ' - '::text) || to_char((date((sp_dwt.weekbegin + '7 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || ')'::text) AS dspcalweek, - (sp_dwt.calweek)::integer AS calweek, - sp_dwt.calyear, - sp_dwt.week_timetotal, - sp_dwt.weekbegin AS weekstart, - date((sp_dwt.weekbegin + '7 days'::interval)) AS weekend, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times_ill, - to_char((((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.mon_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.tue_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.wed_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.thu_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.fri_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sat_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE((sp_dwt.sun_vacancyhours)::interval, '00:00:00'::interval) - ELSE '00:00:00'::interval - END), 'HH24:MI'::text) AS weekvacancy_times, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype = 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes_ill, - (((((( - CASE - WHEN (sp_dwt.mon_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.mon_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.mon_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END + - CASE - WHEN (sp_dwt.tue_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.tue_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.tue_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.wed_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.wed_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.wed_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.thu_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.thu_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.thu_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.fri_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.fri_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.fri_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sat_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sat_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sat_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) + - CASE - WHEN (sp_dwt.sun_vacancytype <> 'ill'::text) THEN COALESCE(((to_number("left"(sp_dwt.sun_vacancyhours, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.sun_vacancyhours, 2), '99'::text)), (0)::numeric) - ELSE (0)::numeric - END) AS weekvacancy_minutes, - ((to_number("left"(sp_dwt.week_timetotal, 2), '99'::text) * (60)::numeric) + to_number("right"(sp_dwt.week_timetotal, 2), '99'::text)) AS weekminutes, - sp_dwt.mon_id, - sp_dwt.weekbegin AS mon_date, - ((COALESCE(((to_char((sp_dwt.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.mon_vacancytype) || ': '::text) || to_char((sp_dwt.mon_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - sp_dwt.mon_timetotal, - sp_dwt.tue_id, - date((sp_dwt.weekbegin + '1 day'::interval)) AS tue_date, - ((COALESCE(((to_char((sp_dwt.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.tue_vacancytype) || ': '::text) || to_char((sp_dwt.tue_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - sp_dwt.tue_timetotal, - sp_dwt.wed_id, - date((sp_dwt.weekbegin + '2 days'::interval)) AS wed_date, - ((COALESCE(((to_char((sp_dwt.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.wed_vacancytype) || ': '::text) || to_char((sp_dwt.wed_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - sp_dwt.wed_timetotal, - sp_dwt.thu_id, - date((sp_dwt.weekbegin + '3 days'::interval)) AS thu_date, - ((COALESCE(((to_char((sp_dwt.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.thu_vacancytype) || ': '::text) || to_char((sp_dwt.thu_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - sp_dwt.thu_timetotal, - sp_dwt.fri_id, - date((sp_dwt.weekbegin + '4 days'::interval)) AS fri_date, - ((COALESCE(((to_char((sp_dwt.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((sp_dwt.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.fri_vacancytype) || ': '::text) || to_char((sp_dwt.fri_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - sp_dwt.fri_timetotal, - sp_dwt.sat_id, - date((sp_dwt.weekbegin + '5 days'::interval)) AS sat_date, - ((COALESCE(((to_char((sp_dwt.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sat_vacancytype) || ': '::text) || to_char((sp_dwt.sat_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - sp_dwt.sat_timetotal, - sp_dwt.sun_id, - date((sp_dwt.weekbegin + '6 days'::interval)) AS sun_date, - ((COALESCE(((to_char((sp_dwt.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((sp_dwt.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((sp_dwt.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((sp_dwt.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE(((('
Congé '::text || sp_dwt.sun_vacancytype) || ': '::text) || to_char((sp_dwt.sun_vacancyhours)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes, - sp_dwt.sun_timetotal - FROM (portanova.vw_staffworkplan_weekly sp_dwt - LEFT JOIN portanova.staff st ON ((sp_dwt.id_staff = st.id))) - ORDER BY sp_dwt.calweek; + sc.startdate, + sc.enddate, + sc.id_staffgroup, + sc.weekhours, + sc.weekdays + FROM (portanova.staff st + LEFT JOIN portanova.staffcontract sc ON ((st.id = sc.id_staff))); -- --- Name: workplans; Type: TABLE; Schema: portanova; Owner: - +-- Name: vw_vacancylist; Type: VIEW; Schema: portanova; Owner: - -- -CREATE TABLE portanova.workplans ( - id integer NOT NULL, - workplan text, - mon_timestart1 time without time zone, - mon_timeend1 time without time zone, - mon_timestart2 time without time zone, - mon_timeend2 time without time zone, - mon_timepause time without time zone, - tue_timestart1 time without time zone, - tue_timeend1 time without time zone, - tue_timestart2 time without time zone, - tue_timeend2 time without time zone, - tue_timepause time without time zone, - wed_timestart1 time without time zone, - wed_timeend1 time without time zone, - wed_timestart2 time without time zone, - wed_timeend2 time without time zone, - wed_timepause time without time zone, - thu_timestart1 time without time zone, - thu_timeend1 time without time zone, - thu_timestart2 time without time zone, - thu_timeend2 time without time zone, - thu_timepause time without time zone, - fri_timestart1 time without time zone, - fri_timeend1 time without time zone, - fri_timestart2 time without time zone, - fri_timeend2 time without time zone, - fri_timepause time without time zone, - sat_timestart1 time without time zone, - sat_timeend1 time without time zone, - sat_timestart2 time without time zone, - sat_timeend2 time without time zone, - sat_timepause time without time zone, - sun_timestart1 time without time zone, - sun_timeend1 time without time zone, - sun_timestart2 time without time zone, - sun_timeend2 time without time zone, - sun_timepause time without time zone -); +CREATE VIEW portanova.vw_vacancylist AS + SELECT vacancytypes.id, + vacancytypes.vacancyname, + vacancytypes.isworktime + FROM portanova.vacancytypes; -- @@ -1283,23 +2108,6 @@ CREATE VIEW portanova.vw_workplanlist AS FROM portanova.workplans; --- --- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - --- - -CREATE VIEW portanova.vw_workplans AS - SELECT workplans.id, - workplans.workplan, - ((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspmontimes, - ((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dsptuetimes, - ((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspwedtimes, - ((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspthutimes, - ((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspfritimes, - ((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsattimes, - ((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) AS dspsuntimes - FROM portanova.workplans; - - -- -- Name: vw_workplansdata; Type: VIEW; Schema: portanova; Owner: - -- @@ -1307,44 +2115,134 @@ CREATE VIEW portanova.vw_workplans AS CREATE VIEW portanova.vw_workplansdata AS SELECT workplans.id, workplans.workplan, + to_char(((((((COALESCE(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval) + COALESCE(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)) + COALESCE(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), '00:00:00'::interval)), 'HH24:MI'::text) AS weektotal, to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) AS mon_timestart1, to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text) AS mon_timeend1, to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text) AS mon_timestart2, to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text) AS mon_timeend2, to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text) AS mon_timepause, + to_char((workplans.mon_timestart2 - workplans.mon_timeend1), 'HH24:MI'::text) AS mon_interruption, + to_char(( + CASE + WHEN (workplans.mon_timeend2 IS NOT NULL) THEN ((workplans.mon_timeend2 - workplans.mon_timestart1) - (workplans.mon_timestart2 - workplans.mon_timeend1)) + ELSE (workplans.mon_timeend1 - workplans.mon_timestart1) + END - COALESCE((workplans.mon_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS mon_total, to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) AS tue_timestart1, to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text) AS tue_timeend1, to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text) AS tue_timestart2, to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text) AS tue_timeend2, to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text) AS tue_timepause, + to_char((workplans.tue_timestart2 - workplans.tue_timeend1), 'HH24:MI'::text) AS tue_interruption, + to_char(( + CASE + WHEN (workplans.tue_timeend2 IS NOT NULL) THEN ((workplans.tue_timeend2 - workplans.tue_timestart1) - (workplans.tue_timestart2 - workplans.tue_timeend1)) + ELSE (workplans.tue_timeend1 - workplans.tue_timestart1) + END - COALESCE((workplans.tue_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS tue_total, to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) AS wed_timestart1, to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text) AS wed_timeend1, to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text) AS wed_timestart2, to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text) AS wed_timeend2, to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text) AS wed_timepause, + to_char((workplans.wed_timestart2 - workplans.wed_timeend1), 'HH24:MI'::text) AS wed_interruption, + to_char(( + CASE + WHEN (workplans.wed_timeend2 IS NOT NULL) THEN ((workplans.wed_timeend2 - workplans.wed_timestart1) - (workplans.wed_timestart2 - workplans.wed_timeend1)) + ELSE (workplans.wed_timeend1 - workplans.wed_timestart1) + END - COALESCE((workplans.wed_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS wed_total, to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) AS thu_timestart1, to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text) AS thu_timeend1, to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text) AS thu_timestart2, to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text) AS thu_timeend2, to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text) AS thu_timepause, + to_char((workplans.thu_timestart2 - workplans.thu_timeend1), 'HH24:MI'::text) AS thu_interruption, + to_char(( + CASE + WHEN (workplans.thu_timeend2 IS NOT NULL) THEN ((workplans.thu_timeend2 - workplans.thu_timestart1) - (workplans.thu_timestart2 - workplans.thu_timeend1)) + ELSE (workplans.thu_timeend1 - workplans.thu_timestart1) + END - COALESCE((workplans.thu_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS thu_total, to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) AS fri_timestart1, to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text) AS fri_timeend1, to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text) AS fri_timestart2, to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text) AS fri_timeend2, to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text) AS fri_timepause, + to_char((workplans.fri_timestart2 - workplans.fri_timeend1), 'HH24:MI'::text) AS fri_interruption, + to_char(( + CASE + WHEN (workplans.fri_timeend2 IS NOT NULL) THEN ((workplans.fri_timeend2 - workplans.fri_timestart1) - (workplans.fri_timestart2 - workplans.fri_timeend1)) + ELSE (workplans.fri_timeend1 - workplans.fri_timestart1) + END - COALESCE((workplans.fri_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS fri_total, to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) AS sat_timestart1, to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text) AS sat_timeend1, to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text) AS sat_timestart2, to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text) AS sat_timeend2, to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text) AS sat_timepause, + to_char((workplans.sat_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sat_interruption, + to_char(( + CASE + WHEN (workplans.sat_timeend2 IS NOT NULL) THEN ((workplans.sat_timeend2 - workplans.sat_timestart1) - (workplans.sat_timestart2 - workplans.sat_timeend1)) + ELSE (workplans.sat_timeend1 - workplans.sat_timestart1) + END - COALESCE((workplans.sat_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sat_total, to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) AS sun_timestart1, to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text) AS sun_timeend1, to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text) AS sun_timestart2, to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text) AS sun_timeend2, - to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause + to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text) AS sun_timepause, + to_char((workplans.sun_timestart2 - workplans.sat_timeend1), 'HH24:MI'::text) AS sun_interruption, + to_char(( + CASE + WHEN (workplans.sun_timeend2 IS NOT NULL) THEN ((workplans.sun_timeend2 - workplans.sun_timestart1) - (workplans.sun_timestart2 - workplans.sun_timeend1)) + ELSE (workplans.sun_timeend1 - workplans.sun_timestart1) + END - COALESCE((workplans.sun_timepause)::interval, '00:00:00'::interval)), 'HH24:MI'::text) AS sun_total FROM portanova.workplans; +-- +-- Name: vw_workplans; Type: VIEW; Schema: portanova; Owner: - +-- + +CREATE VIEW portanova.vw_workplans AS + SELECT workplans.id, + workplans.workplan, + vw_workplansdata.weektotal, + ((((COALESCE(((to_char((workplans.mon_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.mon_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.mon_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.mon_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.mon_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.mon_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.mon_total), ''::text)) AS dspmontimes, + ((((COALESCE(((to_char((workplans.tue_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.tue_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.tue_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.tue_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.tue_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.tue_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.tue_total), ''::text)) AS dsptuetimes, + ((((COALESCE(((to_char((workplans.wed_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.wed_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.wed_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.wed_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.wed_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.wed_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.wed_total), ''::text)) AS dspwedtimes, + ((((COALESCE(((to_char((workplans.thu_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.thu_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.thu_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.thu_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.thu_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.thu_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.thu_total), ''::text)) AS dspthutimes, + ((((COALESCE(((to_char((workplans.fri_timestart1)::interval, 'HH24:MI'::text) || ' -'::text) || to_char((workplans.fri_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.fri_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.fri_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.fri_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.fri_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.fri_total), ''::text)) AS dspfritimes, + ((((COALESCE(((to_char((workplans.sat_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sat_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sat_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sat_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sat_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sat_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sat_total), ''::text)) AS dspsattimes, + ((((COALESCE(((to_char((workplans.sun_timestart1)::interval, 'HH24:MI'::text) || ' - '::text) || to_char((workplans.sun_timeend1)::interval, 'HH24:MI'::text)), ''::text) || COALESCE(((('
'::text || to_char((workplans.sun_timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((workplans.sun_timeend2)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Pause: '::text) || to_char((workplans.sun_timepause)::interval, 'HH24:MI'::text)), ''::text)) || COALESCE((('
'::text || 'Coupure: '::text) || vw_workplansdata.sun_interruption), ''::text)) || COALESCE((('
'::text || 'Total: '::text) || vw_workplansdata.sun_total), ''::text)) AS dspsuntimes + FROM (portanova.workplans + JOIN portanova.vw_workplansdata ON ((workplans.id = vw_workplansdata.id))); + + -- -- Name: workplans_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- @@ -1365,19 +2263,6 @@ CREATE SEQUENCE portanova.workplans_id_seq ALTER SEQUENCE portanova.workplans_id_seq OWNED BY portanova.workplans.id; --- --- Name: worktypes; Type: TABLE; Schema: portanova; Owner: - --- - -CREATE TABLE portanova.worktypes ( - id integer NOT NULL, - worktype text, - isworktime boolean, - isfreetime boolean, - typecolor text -); - - -- -- Name: worktypes_id_seq; Type: SEQUENCE; Schema: portanova; Owner: - -- @@ -1395,21 +2280,57 @@ CREATE SEQUENCE portanova.worktypes_id_seq -- Name: worktypes_id_seq; Type: SEQUENCE OWNED BY; Schema: portanova; Owner: - -- -ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.worktypes.id; +ALTER SEQUENCE portanova.worktypes_id_seq OWNED BY portanova.vacancytypes.id; -- --- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: zzold_vw_staffworkplanlist; Type: VIEW; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); +CREATE VIEW portanova.zzold_vw_staffworkplanlist AS +SELECT + NULL::double precision AS calweek, + NULL::double precision AS calyear, + NULL::date AS weekstart, + NULL::date AS weekend, + NULL::text AS dates, + NULL::integer AS id_staff, + NULL::text AS dspstaffname, + NULL::integer AS id_staffgroup, + NULL::text AS dspweektotals, + NULL::interval AS contracthours, + NULL::interval AS plannedhours, + NULL::interval AS vacancyhours, + NULL::interval AS recuperationhours, + NULL::interval AS hoursdiff, + NULL::bigint AS mon_id, + NULL::text AS dspmontimes, + NULL::bigint AS tue_id, + NULL::text AS dsptuetimes, + NULL::bigint AS wed_id, + NULL::text AS dspwedtimes, + NULL::bigint AS thu_id, + NULL::text AS dspthutimes, + NULL::bigint AS fri_id, + NULL::text AS dspfritimes, + NULL::bigint AS sat_id, + NULL::text AS dspsattimes, + NULL::bigint AS sun_id, + NULL::text AS dspsuntimes; -- --- Name: sites id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: editlog id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.sites ALTER COLUMN id SET DEFAULT nextval('portanova.sites_id_seq'::regclass); +ALTER TABLE ONLY portanova.editlog ALTER COLUMN id SET DEFAULT nextval('portanova.editlog_id_seq'::regclass); + + +-- +-- Name: reportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.reportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.reportperiod_id_seq'::regclass); -- @@ -1434,10 +2355,24 @@ ALTER TABLE ONLY portanova.staffgroups ALTER COLUMN id SET DEFAULT nextval('port -- --- Name: stafftimetracks id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: staffreportperiod id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffreportperiod ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiod_id_seq'::regclass); + + +-- +-- Name: staffreportperioddays id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.stafftimetracks ALTER COLUMN id SET DEFAULT nextval('portanova.stafftimetracks_id_seq'::regclass); +ALTER TABLE ONLY portanova.staffreportperioddays ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); + + +-- +-- Name: staffreportperiodweeks id; Type: DEFAULT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffreportperiodweeks ALTER COLUMN id SET DEFAULT nextval('portanova.staffweeksums_id_seq'::regclass); -- @@ -1448,17 +2383,17 @@ ALTER TABLE ONLY portanova.staffvacancy ALTER COLUMN id SET DEFAULT nextval('por -- --- Name: staffvacancyyear id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: vacancydays id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancyyear ALTER COLUMN id SET DEFAULT nextval('portanova.staffvacancyyear_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancydays ALTER COLUMN id SET DEFAULT nextval('portanova.vacancydays_id_seq'::regclass); -- --- Name: staffworkplan id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: vacancytypes id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffworkplan ALTER COLUMN id SET DEFAULT nextval('portanova.staffworkplan_id_seq'::regclass); +ALTER TABLE ONLY portanova.vacancytypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); -- @@ -1469,26 +2404,26 @@ ALTER TABLE ONLY portanova.workplans ALTER COLUMN id SET DEFAULT nextval('portan -- --- Name: worktypes id; Type: DEFAULT; Schema: portanova; Owner: - +-- Name: zzold_staffreportperiodsums id; Type: DEFAULT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.worktypes ALTER COLUMN id SET DEFAULT nextval('portanova.worktypes_id_seq'::regclass); +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums ALTER COLUMN id SET DEFAULT nextval('portanova.staffreportperiodsums_id_seq'::regclass); -- --- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: editlog editlog_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.reportperiod - ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.editlog + ADD CONSTRAINT editlog_pkey PRIMARY KEY (id); -- --- Name: sites sites_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: reportperiod reportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.sites - ADD CONSTRAINT sites_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.reportperiod + ADD CONSTRAINT reportperiod_pkey PRIMARY KEY (id); -- @@ -1516,11 +2451,19 @@ ALTER TABLE ONLY portanova.staffcontract -- --- Name: stafftimetracks stafftimetracks_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffreportperiod staffreportperiod_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.stafftimetracks - ADD CONSTRAINT stafftimetracks_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiod + ADD CONSTRAINT staffreportperiod_pkey PRIMARY KEY (id); + + +-- +-- Name: zzold_staffreportperiodsums staffreportperiodsums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT staffreportperiodsums_pkey PRIMARY KEY (id); -- @@ -1532,21 +2475,61 @@ ALTER TABLE ONLY portanova.staffvacancy -- --- Name: staffvacancyyear staffvacancyyear_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffreportperiodweeks staffweeksums_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffvacancyyear - ADD CONSTRAINT staffvacancyyear_pkey PRIMARY KEY (id); +ALTER TABLE ONLY portanova.staffreportperiodweeks + ADD CONSTRAINT staffweeksums_pkey PRIMARY KEY (id); -- --- Name: staffworkplan staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: staffreportperioddays staffworkplan_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.staffworkplan +ALTER TABLE ONLY portanova.staffreportperioddays ADD CONSTRAINT staffworkplan_pkey PRIMARY KEY (id); +-- +-- Name: zzold_staffreportperiodsums uniq_staffperiod_cal; Type: CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.zzold_staffreportperiodsums + ADD CONSTRAINT uniq_staffperiod_cal UNIQUE (id_reportperiod, id_staff); + + +-- +-- 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: workplans workplans_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- @@ -1556,18 +2539,192 @@ ALTER TABLE ONLY portanova.workplans -- --- Name: worktypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - +-- Name: vacancytypes worktypes_pkey; Type: CONSTRAINT; Schema: portanova; Owner: - -- -ALTER TABLE ONLY portanova.worktypes +ALTER TABLE ONLY portanova.vacancytypes ADD CONSTRAINT worktypes_pkey PRIMARY KEY (id); -- --- Name: staffcontract trg_upd_portanova_weekhours; Type: TRIGGER; Schema: portanova; Owner: - +-- Name: zzold_vw_staffworkplanlist _RETURN; Type: RULE; Schema: portanova; Owner: - +-- + +CREATE OR REPLACE VIEW portanova.zzold_vw_staffworkplanlist AS + SELECT stw2.calweek, + stw2.calyear, + stw2.caldate AS weekstart, + date((stw2.caldate + '6 days'::interval)) AS weekend, + public.getdateslist(stw2.caldate, 7) AS dates, + stw2.id_staff, + stw2.staffname AS dspstaffname, + stw2.id_staffgroup, + (((((((((((((((((((''::text || ''::text) || ''::text) || ''::text) || ''::text) || ''::text) || '
'::text) || 'Semaine '::text) || stw2.calweek) || '
Contrat:'::text) || to_char(sws.contracthours, 'HH24:MI'::text)) || '
Plan:'::text) || to_char(sws.workhours, 'HH24:MI'::text)) || '
Congé:'::text) || to_char(sws.vacancyhours, 'HH24:MI'::text)) || '
Récup:'::text) || to_char(sws.recuperationhours, 'HH24:MI'::text)) || '
A récup:'::text) || to_char(sws.diffhours, 'HH24:MI'::text)) || '
'::text) AS dspweektotals, + sws.contracthours, + sws.workhours AS plannedhours, + sws.vacancyhours, + sws.recuperationhours, + sws.diffhours AS hoursdiff, + max( + CASE + WHEN (stw2.isodow = 1) THEN stw2.id + ELSE NULL::bigint + END) AS mon_id, + max( + CASE + WHEN (stw2.isodow = 1) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((stw2.caldate)::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspmontimes, + max( + CASE + WHEN (stw2.isodow = 2) THEN stw2.id + ELSE NULL::bigint + END) AS tue_id, + max( + CASE + WHEN (stw2.isodow = 2) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '1 day'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dsptuetimes, + max( + CASE + WHEN (stw2.isodow = 3) THEN stw2.id + ELSE NULL::bigint + END) AS wed_id, + max( + CASE + WHEN (stw2.isodow = 3) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '2 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspwedtimes, + max( + CASE + WHEN (stw2.isodow = 4) THEN stw2.id + ELSE NULL::bigint + END) AS thu_id, + max( + CASE + WHEN (stw2.isodow = 4) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '3 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspthutimes, + max( + CASE + WHEN (stw2.isodow = 5) THEN stw2.id + ELSE NULL::bigint + END) AS fri_id, + max( + CASE + WHEN (stw2.isodow = 5) THEN ((((((((''::text || ''::text) || (COALESCE((((''::text), ''::text) || COALESCE(((((''::text), ''::text))) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '4 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspfritimes, + max( + CASE + WHEN (stw2.isodow = 6) THEN stw2.id + ELSE NULL::bigint + END) AS sat_id, + max( + CASE + WHEN (stw2.isodow = 6) THEN (((((((((''::text || ''::text) || COALESCE(((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '5 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || to_char((stw2.timestart1)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsattimes, + max( + CASE + WHEN (stw2.isodow = 7) THEN stw2.id + ELSE NULL::bigint + END) AS sun_id, + max( + CASE + WHEN (stw2.isodow = 7) THEN (((((((((''::text || ''::text) || COALESCE((((''::text), ''::text)) || COALESCE(((((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((''::text), ''::text)) || COALESCE(((((((((''::text), ''::text)) || '
'::text) || to_char((date((stw2.caldate + '6 days'::interval)))::timestamp with time zone, 'DD.MM.YYYY'::text)) || '
'::text || (to_char((stw2.timestart1)::interval, 'HH24:MI'::text) || ' - '::text)) || to_char((stw2.timeend1)::interval, 'HH24:MI'::text)) || '
'::text || to_char((stw2.timestart2)::interval, 'HH24:MI'::text)) || ' - '::text) || to_char((stw2.timeend2)::interval, 'HH24:MI'::text)) || '
Pause:'::text || to_char((stw2.timepause)::interval, 'HH24:MI'::text)) || '
Plan:'::text || to_char((stw2.totaltime)::interval, 'HH24:MI'::text)) || '
'::text) || stw2.vacancyname) || ':'::text) || to_char((stw2.vacancyhours)::interval, 'HH24:MI'::text)) || '
'::text) + ELSE NULL::text + END) AS dspsuntimes + FROM (( SELECT date_part('isoyear'::text, stw.daydate) AS calyear, + date_part('week'::text, stw.daydate) AS calweek, + (date_trunc('week'::text, (stw.daydate)::timestamp with time zone))::date AS caldate, + (date_part('isodow'::text, stw.daydate))::integer AS isodow, + ((st.surname || ' '::text) || st.prename) AS staffname, + stw.daydate, + stw.id, + stw.id_staff, + stw.timestart1, + stw.timeend1, + stw.timestart2, + stw.timeend2, + stw.timepause, + stw.dayhours AS totaltime, + stw.vacancyhours, + stw.id_vacancytype, + stw.id_staffgroup, + stw.daytype, + vt.color, + vt.vacancyname + FROM ((portanova.staffreportperioddays stw + LEFT JOIN portanova.staff st ON ((stw.id_staff = st.id))) + LEFT JOIN portanova.vacancytypes vt ON ((stw.id_vacancytype = vt.id)))) stw2 + LEFT JOIN portanova.staffreportperiodweeks sws ON (((sws.id_staff = stw2.id_staff) AND (sws.calweek = stw2.calweek) AND ((sws.calyear)::double precision = stw2.calyear)))) + GROUP BY stw2.calweek, stw2.calyear, stw2.caldate, stw2.id_staff, stw2.staffname, sws.id, stw2.id_staffgroup + ORDER BY stw2.staffname, stw2.id_staff, stw2.calweek; + + +-- +-- 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: staffcontract staffcontract_fk_1; Type: FK CONSTRAINT; Schema: portanova; Owner: - +-- + +ALTER TABLE ONLY portanova.staffcontract + ADD CONSTRAINT staffcontract_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(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: - -- -CREATE TRIGGER trg_upd_portanova_weekhours BEFORE UPDATE OF weekhours ON portanova.staffcontract FOR EACH ROW EXECUTE PROCEDURE public.trg_update_monthhours(); +ALTER TABLE ONLY portanova.staffreportperioddays + ADD CONSTRAINT staffworkplan_fk_1 FOREIGN KEY (id_staffgroup) REFERENCES portanova.staffgroups(id); --